summaryrefslogtreecommitdiff
path: root/db/migrate/20180301010859_create_ci_builds_metadata_table.rb
blob: ce73744409233ce04672f370f11baa5d6835a8a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class CreateCiBuildsMetadataTable < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    create_table :ci_builds_metadata do |t|
      t.integer :build_id, null: false
      t.integer :project_id, null: false
      t.integer :timeout
      t.integer :timeout_source, null: false, default: 1

      t.foreign_key :ci_builds, column: :build_id, on_delete: :cascade
      t.foreign_key :projects, column: :project_id, on_delete: :cascade

      t.index :build_id, unique: true
      t.index :project_id
    end
  end
end