gitlab-org--gitlab-foss/db/migrate/20170525132202_create_pipel...

15 lines
293 B
Ruby
Raw Normal View History

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