about summary refs log tree commit diff
path: root/db/migrate/20190306145741_add_lock_version_to_polls.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20190306145741_add_lock_version_to_polls.rb')
-rw-r--r--db/migrate/20190306145741_add_lock_version_to_polls.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/db/migrate/20190306145741_add_lock_version_to_polls.rb b/db/migrate/20190306145741_add_lock_version_to_polls.rb
new file mode 100644
index 000000000..5bb8cd3b4
--- /dev/null
+++ b/db/migrate/20190306145741_add_lock_version_to_polls.rb
@@ -0,0 +1,24 @@
+require Rails.root.join('lib', 'mastodon', 'migration_helpers')
+
+class AddLockVersionToPolls < ActiveRecord::Migration[5.2]
+  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
+