about summary refs log tree commit diff
path: root/db/migrate/20190306145741_add_lock_version_to_polls.rb
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2019-03-06 22:39:22 +0100
committerThibaut Girka <thib@sitedethib.com>2019-03-06 22:39:22 +0100
commitcf4fd8bcfe22c8ef8e6e2a86149dec3b39adc93c (patch)
tree07011d17c72d428717757be2d242072755dff0da /db/migrate/20190306145741_add_lock_version_to_polls.rb
parent1bb23100b1059879a743302253eafc8317daf215 (diff)
parent96f905f40913b915496039d188297a7949b1a6db (diff)
Merge branch 'master' into glitch-soc/merge-upstream
Diffstat (limited to 'db/migrate/20190306145741_add_lock_version_to_polls.rb')
-rw-r--r--db/migrate/20190306145741_add_lock_version_to_polls.rb6
1 files changed, 6 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..cf506404d
--- /dev/null
+++ b/db/migrate/20190306145741_add_lock_version_to_polls.rb
@@ -0,0 +1,6 @@
+class AddLockVersionToPolls < ActiveRecord::Migration[5.2]
+  def change
+    add_column :polls, :lock_version, :integer, null: false, default: 0
+  end
+end
+