Browse Source

Fix AddLockVersionToPolls migration (#10200)

pull/4/head
ThibG 5 years ago
committed by Eugen Rochko
parent
commit
dfb45374d2
1 changed files with 20 additions and 2 deletions
  1. +20
    -2
      db/migrate/20190306145741_add_lock_version_to_polls.rb

+ 20
- 2
db/migrate/20190306145741_add_lock_version_to_polls.rb View File

@ -1,6 +1,24 @@
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

Loading…
Cancel
Save