mirror of
https://github.com/mastodon/mastodon.git
synced 2024-12-22 09:08:24 +00:00
Add NOT NULL
requirement to columns on polls
(#33374)
This commit is contained in:
parent
d2fbf42b0e
commit
b648c64e2e
|
@ -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
|
||||
|
|
|
@ -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
|
|
@ -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
|
|
@ -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
|
|
@ -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
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue