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