tags: drop is_locked column.
This column was deprecated in 208b6189. Finish removing it.
This commit is contained in:
5
db/migrate/20220909205433_drop_is_locked_from_tags.rb
Normal file
5
db/migrate/20220909205433_drop_is_locked_from_tags.rb
Normal 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
|
||||
@@ -1895,7 +1895,6 @@ CREATE TABLE public.tags (
|
||||
category integer DEFAULT 0 NOT NULL,
|
||||
created_at timestamp without time zone NOT NULL,
|
||||
updated_at timestamp without time zone NOT NULL,
|
||||
is_locked boolean DEFAULT false NOT NULL,
|
||||
is_deprecated boolean DEFAULT false NOT NULL,
|
||||
words character varying[] DEFAULT '{}'::character varying[] NOT NULL
|
||||
);
|
||||
@@ -5985,6 +5984,7 @@ INSERT INTO "schema_migrations" (version) VALUES
|
||||
('20220525214746'),
|
||||
('20220623052547'),
|
||||
('20220627211714'),
|
||||
('20220829184824');
|
||||
('20220829184824'),
|
||||
('20220909205433');
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user