summaryrefslogtreecommitdiff
path: root/db/migrate/20170525132202_create_pipeline_stages.rb
blob: 825993aa41e435d365204bca90ba5393fbb4ccd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# rubocop:disable Migration/Timestamps
class CreatePipelineStages < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    create_table :ci_stages do |t|
      t.integer :project_id
      t.integer :pipeline_id
      t.timestamps null: true
      t.string :name
    end

    add_concurrent_foreign_key :ci_stages, :projects, column: :project_id, on_delete: :cascade
    add_concurrent_foreign_key :ci_stages, :ci_pipelines, column: :pipeline_id, on_delete: :cascade
    add_concurrent_index :ci_stages, :project_id
    add_concurrent_index :ci_stages, :pipeline_id
  end

  def down
    drop_table :ci_stages
  end
end