Commit 25f67a88 authored by Sean Arnold's avatar Sean Arnold

Update migration to have null: false

parent fc6d3431
...@@ -7,11 +7,13 @@ class AddIsRemovedToOncallParticipant < ActiveRecord::Migration[6.0] ...@@ -7,11 +7,13 @@ class AddIsRemovedToOncallParticipant < ActiveRecord::Migration[6.0]
def up def up
with_lock_retries do with_lock_retries do
add_column :incident_management_oncall_participants, :is_removed, :boolean, default: false add_column :incident_management_oncall_participants, :is_removed, :boolean, default: false, null: false
end end
end end
def down def down
remove_column :incident_management_oncall_participants, :is_removed with_lock_retries do
remove_column :incident_management_oncall_participants, :is_removed
end
end end
end end
...@@ -13234,7 +13234,7 @@ CREATE TABLE incident_management_oncall_participants ( ...@@ -13234,7 +13234,7 @@ CREATE TABLE incident_management_oncall_participants (
user_id bigint NOT NULL, user_id bigint NOT NULL,
color_palette smallint NOT NULL, color_palette smallint NOT NULL,
color_weight smallint NOT NULL, color_weight smallint NOT NULL,
is_removed boolean DEFAULT false is_removed boolean DEFAULT false NOT NULL
); );
CREATE SEQUENCE incident_management_oncall_participants_id_seq CREATE SEQUENCE incident_management_oncall_participants_id_seq
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment