debian-mirror-gitlab/db/migrate/20220811092243_create_ml_experiments.rb
2022-08-27 11:52:29 +05:30

19 lines
525 B
Ruby

# frozen_string_literal: true
class CreateMlExperiments < Gitlab::Database::Migration[2.0]
enable_lock_retries!
def change
create_table :ml_experiments do |t|
t.timestamps_with_timezone null: false
t.bigint :iid, null: false
t.bigint :project_id, null: false
t.references :user, foreign_key: true, index: true, on_delete: :nullify
t.text :name, limit: 255, null: false
t.index [:project_id, :iid], unique: true
t.index [:project_id, :name], unique: true
end
end
end