diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-08-25 01:41:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-25 01:41:18 +0200 |
commit | 9caa90025fd9f1ef46a74f31cefd19335e291e76 (patch) | |
tree | 51d91a2c713bcddc9d21cd63836db3ae4bc3d226 /db/migrate | |
parent | c5157ef07bbae5c3a307d6a005aef0f1c0452af3 (diff) |
Pinned statuses (#4675)
* Pinned statuses * yarn manage:translations
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20170823162448_create_status_pins.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/db/migrate/20170823162448_create_status_pins.rb b/db/migrate/20170823162448_create_status_pins.rb new file mode 100644 index 000000000..9a6d4a7b9 --- /dev/null +++ b/db/migrate/20170823162448_create_status_pins.rb @@ -0,0 +1,10 @@ +class CreateStatusPins < ActiveRecord::Migration[5.1] + def change + create_table :status_pins do |t| + t.belongs_to :account, foreign_key: { on_delete: :cascade }, null: false + t.belongs_to :status, foreign_key: { on_delete: :cascade }, null: false + end + + add_index :status_pins, [:account_id, :status_id], unique: true + end +end |