2018-12-23 12:14:25 +05:30
|
|
|
class CreateSiteStatistics < ActiveRecord::Migration[4.2]
|
2018-11-18 11:00:15 +05:30
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def up
|
|
|
|
create_table :site_statistics do |t|
|
|
|
|
t.integer :repositories_count, default: 0, null: false
|
|
|
|
t.integer :wikis_count, default: 0, null: false
|
|
|
|
end
|
|
|
|
|
|
|
|
execute('INSERT INTO site_statistics (id) VALUES(1)')
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
drop_table :site_statistics
|
|
|
|
end
|
|
|
|
end
|