debian-mirror-gitlab/db/migrate/20171214144320_add_store_column_to_uploads.rb

13 lines
321 B
Ruby
Raw Normal View History

2018-05-09 12:01:36 +05:30
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
class AddStoreColumnToUploads < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
add_column(:uploads, :store, :integer)
end
end