Set supporter_notes.deleted default to false
This commit is contained in:
parent
9aec278449
commit
5011f2d748
2 changed files with 13 additions and 2 deletions
|
@ -0,0 +1,10 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
|
||||
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
|
||||
class SetSupporterNoteDeletedDefaultToFalse < ActiveRecord::Migration[6.1]
|
||||
def change
|
||||
change_column_default :supporter_notes, :deleted, from: nil, to: false
|
||||
change_column_null :supporter_notes, :deleted, false
|
||||
end
|
||||
end
|
|
@ -2015,7 +2015,7 @@ CREATE TABLE public.supporter_notes (
|
|||
created_at timestamp without time zone NOT NULL,
|
||||
updated_at timestamp without time zone NOT NULL,
|
||||
user_id integer,
|
||||
deleted boolean
|
||||
deleted boolean DEFAULT false NOT NULL
|
||||
);
|
||||
|
||||
|
||||
|
@ -4156,6 +4156,7 @@ INSERT INTO "schema_migrations" (version) VALUES
|
|||
('20210105192021'),
|
||||
('20210105192022'),
|
||||
('20210107210143'),
|
||||
('20210111220133');
|
||||
('20210111220133'),
|
||||
('20210114213034');
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue