Skip to content
Snippets Groups Projects
Commit dfb45374 authored by ThibG's avatar ThibG Committed by Eugen Rochko
Browse files

Fix AddLockVersionToPolls migration (#10200)

parent f44091d6
No related branches found
No related tags found
No related merge requests found
require Rails.root.join('lib', 'mastodon', 'migration_helpers')
class AddLockVersionToPolls < ActiveRecord::Migration[5.2]
def change
add_column :polls, :lock_version, :integer, null: false, default: 0
include Mastodon::MigrationHelpers
disable_ddl_transaction!
def up
safety_assured do
add_column_with_default(
:polls,
:lock_version,
:integer,
allow_null: false,
default: 0
)
end
end
def down
remove_column :polls, :lock_version
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment