summaryrefslogtreecommitdiff
path: root/db/migrate/20170918140927_create_group_custom_attributes.rb
blob: 215a0f16b6fe8d8cceda27c2758dab8cdd47493e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class CreateGroupCustomAttributes < ActiveRecord::Migration[4.2]
  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