gitlab-org--gitlab-foss/db/migrate/20170120131253_create_chat_...

18 lines
368 B
Ruby
Raw Normal View History

2017-02-02 14:04:02 +00:00
class CreateChatTeams < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
create_table :chat_teams do |t|
2017-02-20 13:50:32 +00:00
t.integer :namespace_id, index: true
2017-02-02 14:04:02 +00:00
t.string :team_id
t.string :name
t.timestamps null: false
end
2017-02-20 13:50:32 +00:00
add_foreign_key :chat_teams, :namespaces, on_delete: :cascade
2017-02-02 14:04:02 +00:00
end
end