debian-mirror-gitlab/db/migrate/20170918111708_create_project_custom_attributes.rb
2019-02-15 15:39:39 +05:30

15 lines
439 B
Ruby

class CreateProjectCustomAttributes < ActiveRecord::Migration[4.2]
DOWNTIME = false
def change
create_table :project_custom_attributes do |t|
t.timestamps_with_timezone null: false
t.references :project, null: false, foreign_key: { on_delete: :cascade }
t.string :key, null: false
t.string :value, null: false
t.index [:project_id, :key], unique: true
t.index [:key, :value]
end
end
end