about summary refs log tree commit diff
path: root/db/migrate/20190306145741_add_lock_version_to_polls.rb
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2019-03-06 22:59:07 +0100
committerGitHub <noreply@github.com>2019-03-06 22:59:07 +0100
commitda8ce25fa1c5f1ebd9c314c5a438b0e77f8d720c (patch)
tree170efea708205d3fc4fd9b39098051ed2b68e917 /db/migrate/20190306145741_add_lock_version_to_polls.rb
parent1bb23100b1059879a743302253eafc8317daf215 (diff)
parent6e295beab26089595b0ca067beb8a47cb11f8e3e (diff)
Merge pull request #942 from ThibG/glitch-soc/merge-upstream
Merge upstream changes
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
+