Add NOT NULL requirement to columns on polls (#33374)

This commit is contained in:
Matt Jankowski 2024-12-20 09:33:48 -05:00 committed by GitHub
parent d2fbf42b0e
commit b648c64e2e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 62 additions and 10 deletions

View file

@ -5,19 +5,19 @@
# Table name: polls
#
# id :bigint(8) not null, primary key
# account_id :bigint(8)
# status_id :bigint(8)
# expires_at :datetime
# options :string default([]), not null, is an Array
# cached_tallies :bigint(8) default([]), not null, is an Array
# multiple :boolean default(FALSE), not null
# expires_at :datetime
# hide_totals :boolean default(FALSE), not null
# votes_count :bigint(8) default(0), not null
# last_fetched_at :datetime
# lock_version :integer default(0), not null
# multiple :boolean default(FALSE), not null
# options :string default([]), not null, is an Array
# voters_count :bigint(8)
# votes_count :bigint(8) default(0), not null
# created_at :datetime not null
# updated_at :datetime not null
# lock_version :integer default(0), not null
# voters_count :bigint(8)
# account_id :bigint(8) not null
# status_id :bigint(8) not null
#
class Poll < ApplicationRecord

View file

@ -0,0 +1,7 @@
# frozen_string_literal: true
class AddNotNullToPollAccountColumn < ActiveRecord::Migration[7.2]
def change
add_check_constraint :polls, 'account_id IS NOT NULL', name: 'polls_account_id_null', validate: false
end
end

View file

@ -0,0 +1,19 @@
# frozen_string_literal: true
class ValidateNotNullToPollAccountColumn < ActiveRecord::Migration[7.2]
def up
connection.execute(<<~SQL.squish)
DELETE FROM polls
WHERE account_id IS NULL
SQL
validate_check_constraint :polls, name: 'polls_account_id_null'
change_column_null :polls, :account_id, false
remove_check_constraint :polls, name: 'polls_account_id_null'
end
def down
add_check_constraint :polls, 'account_id IS NOT NULL', name: 'polls_account_id_null', validate: false
change_column_null :polls, :account_id, true
end
end

View file

@ -0,0 +1,7 @@
# frozen_string_literal: true
class AddNotNullToPollStatusColumn < ActiveRecord::Migration[7.2]
def change
add_check_constraint :polls, 'status_id IS NOT NULL', name: 'polls_status_id_null', validate: false
end
end

View file

@ -0,0 +1,19 @@
# frozen_string_literal: true
class ValidateNotNullToPollStatusColumn < ActiveRecord::Migration[7.2]
def up
connection.execute(<<~SQL.squish)
DELETE FROM polls
WHERE status_id IS NULL
SQL
validate_check_constraint :polls, name: 'polls_status_id_null'
change_column_null :polls, :status_id, false
remove_check_constraint :polls, name: 'polls_status_id_null'
end
def down
add_check_constraint :polls, 'status_id IS NOT NULL', name: 'polls_status_id_null', validate: false
change_column_null :polls, :status_id, true
end
end

View file

@ -778,8 +778,8 @@ ActiveRecord::Schema[7.2].define(version: 2024_12_16_224825) do
end
create_table "polls", force: :cascade do |t|
t.bigint "account_id"
t.bigint "status_id"
t.bigint "account_id", null: false
t.bigint "status_id", null: false
t.datetime "expires_at", precision: nil
t.string "options", default: [], null: false, array: true
t.bigint "cached_tallies", default: [], null: false, array: true