summaryrefslogtreecommitdiff
path: root/db/migrate/20170120131253_create_chat_teams.rb
blob: e9b9bd7bd2f2d6069aa5f090d17af06335d2ba24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# rubocop:disable Migration/Timestamps
class CreateChatTeams < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = true
  DOWNTIME_REASON = "Adding a foreign key"

  disable_ddl_transaction!

  def change
    create_table :chat_teams do |t|
      t.references :namespace, null: false, index: { unique: true }, foreign_key: { on_delete: :cascade }
      t.string :team_id
      t.string :name

      t.timestamps null: false
    end
  end
end