Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20170802013652_add_storage_fields_to_project.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c2381a9d0b278e1da9bd9e5bf24b91ec9057eff0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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

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

  def down
    remove_column :projects, :storage_version
  end
end