2019-02-15 15:39:39 +05:30
|
|
|
class CreateGroupCustomAttributes < ActiveRecord::Migration[4.2]
|
2018-03-17 18:26:18 +05:30
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def change
|
|
|
|
create_table :group_custom_attributes do |t|
|
|
|
|
t.timestamps_with_timezone null: false
|
|
|
|
t.references :group, null: false
|
|
|
|
t.string :key, null: false
|
|
|
|
t.string :value, null: false
|
|
|
|
|
|
|
|
t.index [:group_id, :key], unique: true
|
|
|
|
t.index [:key, :value]
|
|
|
|
end
|
|
|
|
|
|
|
|
add_foreign_key :group_custom_attributes, :namespaces, column: :group_id, on_delete: :cascade # rubocop: disable Migration/AddConcurrentForeignKey
|
|
|
|
end
|
|
|
|
end
|