summaryrefslogtreecommitdiff
path: root/db/migrate/20180502122856_create_project_mirror_data.rb
blob: d050ff1ca61dfc0e941c33e0d72fb410ff4249fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
class CreateProjectMirrorData < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    if table_exists?(:project_mirror_data)
      add_column :project_mirror_data, :status, :string unless column_exists?(:project_mirror_data, :status)
      add_column :project_mirror_data, :jid, :string unless column_exists?(:project_mirror_data, :jid)
      add_column :project_mirror_data, :last_error, :text unless column_exists?(:project_mirror_data, :last_error)
    else
      create_table :project_mirror_data do |t|
        t.references :project, index: true, foreign_key: { on_delete: :cascade }
        t.string :status
        t.string :jid
        t.text :last_error
      end
    end
  end

  def down
    drop_table(:project_mirror_data) if table_exists?(:project_mirror_data)
  end
end