summaryrefslogtreecommitdiff
path: root/db/migrate/20161113184239_create_user_chat_names_table.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20161113184239_create_user_chat_names_table.rb')
-rw-r--r--db/migrate/20161113184239_create_user_chat_names_table.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/db/migrate/20161113184239_create_user_chat_names_table.rb b/db/migrate/20161113184239_create_user_chat_names_table.rb
deleted file mode 100644
index 0031ca66afe..00000000000
--- a/db/migrate/20161113184239_create_user_chat_names_table.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-# rubocop:disable Migration/Timestamps
-class CreateUserChatNamesTable < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- def change
- create_table :chat_names do |t|
- t.integer :user_id, null: false
- t.integer :service_id, null: false
- t.string :team_id, null: false
- t.string :team_domain
- t.string :chat_id, null: false
- t.string :chat_name
- t.datetime :last_used_at
- t.timestamps null: false
- end
-
- add_index :chat_names, [:user_id, :service_id], unique: true
- add_index :chat_names, [:service_id, :team_id, :chat_id], unique: true
- end
-end