about summary refs log tree commit diff
path: root/db/migrate/20170823162448_create_status_pins.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170823162448_create_status_pins.rb')
-rw-r--r--db/migrate/20170823162448_create_status_pins.rb10
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