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

  DOWNTIME = false

  def up
    return if table_exists?(:project_mirror_data)

    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

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