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

15 lines
283 B
Ruby
Raw Normal View History

class MigratePipelineStages < 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.string :name
t.timestamps
end
end
end