gitlab-org--gitlab-foss/db/post_migrate/20181123042307_drop_site_statistics.rb
Gabriel Mazetto 6cd2c0a7ec Move drop_site_statistics to be a post deployment migration
As post deployment migration we don't need to make it a migration that
requires downtime
2018-11-29 18:47:25 +01:00

22 lines
524 B
Ruby

# frozen_string_literal: true
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
class DropSiteStatistics < ActiveRecord::Migration[5.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def up
drop_table :site_statistics
end
def down
create_table :site_statistics do |t|
t.integer :repositories_count, default: 0, null: false
end
execute('INSERT INTO site_statistics (id) VALUES(1)')
end
end