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

14 lines
402 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 AddJobsCacheIndexToProject < ActiveRecord::Migration
2017-12-22 19:07:49 +00:00
include Gitlab::Database::MigrationHelpers
# Set this constant to true if this migration requires downtime.
DOWNTIME = false
def change
add_column :projects, :jobs_cache_index, :integer
2017-12-22 19:07:49 +00:00
end
end