From a1e96ae94fbdad5b5953edd705717de4e1ce60eb Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Fri, 17 Feb 2017 02:33:10 +0100 Subject: Add foreign key to prevent reblogs of non-existent (after race conditions) statuses from happening Fix issue with detailed status view not supporting unreblogging/unfavouriting --- .../20170217012631_add_reblog_of_id_foreign_key_to_statuses.rb | 5 +++++ db/schema.rb | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 db/migrate/20170217012631_add_reblog_of_id_foreign_key_to_statuses.rb (limited to 'db') diff --git a/db/migrate/20170217012631_add_reblog_of_id_foreign_key_to_statuses.rb b/db/migrate/20170217012631_add_reblog_of_id_foreign_key_to_statuses.rb new file mode 100644 index 000000000..175d4048f --- /dev/null +++ b/db/migrate/20170217012631_add_reblog_of_id_foreign_key_to_statuses.rb @@ -0,0 +1,5 @@ +class AddReblogOfIdForeignKeyToStatuses < ActiveRecord::Migration[5.0] + def change + add_foreign_key :statuses, :statuses, column: :reblog_of_id, on_delete: :cascade + end +end diff --git a/db/schema.rb b/db/schema.rb index 8fa0c056c..fa5c40774 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: 20170214110202) do +ActiveRecord::Schema.define(version: 20170217012631) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -289,4 +289,5 @@ ActiveRecord::Schema.define(version: 20170214110202) do t.index ["user_id"], name: "index_web_settings_on_user_id", unique: true, using: :btree end + add_foreign_key "statuses", "statuses", column: "reblog_of_id", on_delete: :cascade end -- cgit