15 lines
509 B
Ruby
15 lines
509 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddPendingBuildsTable < ActiveRecord::Migration[6.0]
|
|
def up
|
|
create_table :ci_pending_builds do |t|
|
|
t.references :build, index: { unique: true }, null: false, foreign_key: { to_table: :ci_builds, on_delete: :cascade }
|
|
t.references :project, index: true, null: false, foreign_key: { on_delete: :cascade }
|
|
t.datetime_with_timezone :created_at, null: false, default: -> { 'NOW()' }
|
|
end
|
|
end
|
|
|
|
def down
|
|
drop_table :ci_pending_builds
|
|
end
|
|
end
|