summaryrefslogtreecommitdiff
path: root/db/migrate/20170720122741_create_user_custom_attributes.rb
blob: b1c0bebc633c11fbc8d5e67c18f1d420a6d2e9a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class CreateUserCustomAttributes < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    create_table :user_custom_attributes do |t|
      t.timestamps_with_timezone null: false
      t.references :user, null: false, foreign_key: { on_delete: :cascade }
      t.string :key, null: false
      t.string :value, null: false

      t.index [:user_id, :key], unique: true
      t.index [:key, :value]
    end
  end
end