2017-09-10 17:25:29 +05:30
|
|
|
# rubocop:disable Migration/Timestamps
|
2017-08-17 22:00:37 +05:30
|
|
|
class CreatePipelineSchedulesTable < ActiveRecord::Migration
|
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def up
|
|
|
|
create_table :ci_pipeline_schedules do |t|
|
|
|
|
t.string :description
|
|
|
|
t.string :ref
|
|
|
|
t.string :cron
|
|
|
|
t.string :cron_timezone
|
|
|
|
t.datetime :next_run_at
|
|
|
|
t.integer :project_id
|
|
|
|
t.integer :owner_id
|
|
|
|
t.boolean :active, default: true
|
|
|
|
t.datetime :deleted_at
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
t.timestamps null: true
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
add_index(:ci_pipeline_schedules, :project_id)
|
|
|
|
add_index(:ci_pipeline_schedules, [:next_run_at, :active])
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
drop_table :ci_pipeline_schedules
|
|
|
|
end
|
|
|
|
end
|