This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2019-03-06 16:50:06 -08:00
|
|
|
require Rails.root.join('lib', 'mastodon', 'migration_helpers')
|
|
|
|
|
2019-03-06 10:53:57 -08:00
|
|
|
class AddLockVersionToPolls < ActiveRecord::Migration[5.2]
|
2019-03-06 16:50:06 -08:00
|
|
|
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
|
2019-03-06 10:53:57 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|