diff options
author | ThibG <thib@sitedethib.com> | 2019-03-06 19:53:57 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2019-03-06 19:53:57 +0100 |
commit | 96f905f40913b915496039d188297a7949b1a6db (patch) | |
tree | 54111b6c1ee941cd261cf01c630711787b25c1d3 /db | |
parent | b3668a79eca2d185ea57a9ffc2fa012db52e49f0 (diff) |
Add optimistic lock to avoid race conditions when handling votes (#10196)
* Add optimistic lock to avoid race conditions when handling votes * Force-reload polls when getting `ActiveRecord::StaleObjectError`
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20190306145741_add_lock_version_to_polls.rb | 6 | ||||
-rw-r--r-- | db/schema.rb | 3 |
2 files changed, 8 insertions, 1 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 + diff --git a/db/schema.rb b/db/schema.rb index 161619dcf..3d5260270 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 2019_03_04_152020) do +ActiveRecord::Schema.define(version: 2019_03_06_145741) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -464,6 +464,7 @@ ActiveRecord::Schema.define(version: 2019_03_04_152020) do t.datetime "last_fetched_at" t.datetime "created_at", null: false t.datetime "updated_at", null: false + t.integer "lock_version", default: 0, null: false t.index ["account_id"], name: "index_polls_on_account_id" t.index ["status_id"], name: "index_polls_on_status_id" end |