summaryrefslogtreecommitdiff
path: root/db/migrate/20170525132202_create_pipeline_stages.rb
blob: 634f2c1156eef518f0e5943c6441832205298bd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class CreatePipelineStages < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

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