summaryrefslogtreecommitdiff
path: root/db/migrate/20210512120122_add_pending_builds_table.rb
blob: 38e13d43b3875a76ca98660487f15d78d416d859 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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