about summary refs log tree commit diff
path: root/db/migrate/20160224223247_create_mentions.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20160224223247_create_mentions.rb')
-rw-r--r--db/migrate/20160224223247_create_mentions.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/db/migrate/20160224223247_create_mentions.rb b/db/migrate/20160224223247_create_mentions.rb
new file mode 100644
index 000000000..095f6b7d2
--- /dev/null
+++ b/db/migrate/20160224223247_create_mentions.rb
@@ -0,0 +1,12 @@
+class CreateMentions < ActiveRecord::Migration
+  def change
+    create_table :mentions do |t|
+      t.integer :account_id
+      t.integer :status_id
+
+      t.timestamps null: false
+    end
+
+    add_index :mentions, [:account_id, :status_id], unique: true
+  end
+end