gitlab-org--gitlab-foss/db/migrate/20171222183504_add_cache_in...

14 lines
393 B
Ruby
Raw Normal View History

2017-12-22 19:07:49 +00:00
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
class AddCacheIndexToProject < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
# Set this constant to true if this migration requires downtime.
DOWNTIME = false
def change
add_column :projects, :cache_index, :integer
2017-12-22 19:07:49 +00:00
end
end