summaryrefslogtreecommitdiff
path: root/db/migrate/20161201160452_migrate_project_statistics.rb
blob: 42c5be07e83cff15af3bd3f3c568a6df4ca5415d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# rubocop:disable Migration/RemoveColumn
class MigrateProjectStatistics < ActiveRecord::Migration[4.2]
  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

  # rubocop: disable Migration/AddColumn
  def down
    add_column :projects, :repository_size, :float, default: 0.0
    add_column :projects, :commit_count, :integer, default: 0
  end
end