2016-11-22 11:58:10 -05:00
|
|
|
class MigrateProjectStatistics < ActiveRecord::Migration
|
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = true
|
|
|
|
DOWNTIME_REASON = 'Removes two columns from the projects table'
|
|
|
|
|
|
|
|
def up
|
|
|
|
# convert repository_size in float (megabytes) to integer (bytes),
|
|
|
|
# initialize total storage_size with repository_size
|
|
|
|
execute <<-EOF
|
|
|
|
INSERT INTO project_statistics (project_id, namespace_id, commit_count, storage_size, repository_size)
|
|
|
|
SELECT id, namespace_id, commit_count, (repository_size * 1024 * 1024), (repository_size * 1024 * 1024) FROM projects
|
|
|
|
EOF
|
|
|
|
|
|
|
|
remove_column :projects, :repository_size
|
|
|
|
remove_column :projects, :commit_count
|
|
|
|
end
|
|
|
|
|
2017-03-14 07:56:37 -04:00
|
|
|
# rubocop: disable Migration/AddColumn
|
2016-11-22 11:58:10 -05:00
|
|
|
def down
|
2017-03-14 02:36:33 -04:00
|
|
|
add_column :projects, :repository_size, :float, default: 0.0
|
|
|
|
add_column :projects, :commit_count, :integer, default: 0
|
2016-11-22 11:58:10 -05:00
|
|
|
end
|
|
|
|
end
|