about summary refs log tree commit diff
path: root/db/migrate
diff options
context:
space:
mode:
authormultiple creatures <dev@multiple-creature.party>2019-07-24 13:01:12 -0500
committermultiple creatures <dev@multiple-creature.party>2019-07-24 13:01:12 -0500
commit25d628fca314aebb25e3976f006cc96629a3d780 (patch)
treebb4304947f7727264038b90b0e48a9783a1f30ff /db/migrate
parentd83fcfd1f15a97bfb5c6f36a82d7253175518daf (diff)
revert the current unfinished chat implementation
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20190526052454_create_chat_accounts.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/db/migrate/20190526052454_create_chat_accounts.rb b/db/migrate/20190526052454_create_chat_accounts.rb
deleted file mode 100644
index b950e36c1..000000000
--- a/db/migrate/20190526052454_create_chat_accounts.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-class CreateChatAccounts < ActiveRecord::Migration[5.2]
-  def change
-    create_table :chat_accounts do |t|
-      t.references :account, foreign_key: { on_delete: :cascade }, null: false
-      t.references :tag, foreign_key: { on_delete: :cascade }, null: false
-      t.index [:account_id, :tag_id], unique: true
-      t.index [:tag_id, :account_id]
-      t.timestamps
-    end
-  end
-end