BigW Consortium Gitlab

20160610204157_add_deployments.rb 997 Bytes
Newer Older
1 2 3
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

4
# rubocop:disable Migration/Datetime
5 6 7 8 9
class AddDeployments < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  def change
    create_table :deployments, force: true do |t|
Kamil Trzcinski committed
10
      t.integer  :iid,            null: false
11 12
      t.integer  :project_id,     null: false
      t.integer  :environment_id, null: false
Kamil Trzcinski committed
13 14 15
      t.string   :ref,            null: false
      t.boolean  :tag,            null: false
      t.string   :sha,            null: false
16
      t.integer  :user_id
17 18
      t.integer  :deployable_id
      t.string   :deployable_type
19 20 21 22 23
      t.datetime :created_at
      t.datetime :updated_at
    end

    add_index :deployments, :project_id
24
    add_index :deployments, [:project_id, :iid], unique: true
25 26 27 28
    add_index :deployments, [:project_id, :environment_id]
    add_index :deployments, [:project_id, :environment_id, :iid]
  end
end