summaryrefslogtreecommitdiff
path: root/db/migrate/20170802013652_add_storage_fields_to_project.rb
blob: e99ae53ef11716855870f1731d56cbe253e7f46b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class AddStorageFieldsToProject < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false
  disable_ddl_transaction!

  def up
    add_column :projects, :storage_version, :integer, limit: 2
    add_concurrent_index :projects, :storage_version
  end

  def down
    remove_column :projects, :storage_version
  end
end