summaryrefslogtreecommitdiff
path: root/db/migrate/20190731084415_add_build_need.rb
blob: 45b8abb480db24bb60b5a656bf5e444729475244 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class AddBuildNeed < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    create_table :ci_build_needs, id: :serial do |t|
      t.integer :build_id, null: false
      t.text :name, null: false

      t.index [:build_id, :name], unique: true
      t.foreign_key :ci_builds, column: :build_id, on_delete: :cascade
    end
  end
end