tags: drop is_locked column.

This column was deprecated in 208b6189. Finish removing it.
This commit is contained in:
evazion
2022-09-09 15:56:24 -05:00
parent c96bdd1766
commit f36f1ff37b
2 changed files with 7 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
class DropIsLockedFromTags < ActiveRecord::Migration[7.0]
def change
remove_column :tags, :is_locked, :boolean, default: false, null: false
end
end