mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
23 lines
741 B
Ruby
23 lines
741 B
Ruby
|
class MigratePlanStats < ActiveRecord::Migration
|
||
|
def up
|
||
|
index = StatisticIndex.where({es_type_key: 'subscription'}).first
|
||
|
if index
|
||
|
StatisticType.where({statistic_index_id: index.id}).destroy_all
|
||
|
|
||
|
Plan.all.each do |p|
|
||
|
p.create_statistic_type
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
index = StatisticIndex.where({es_type_key: 'subscription'}).first
|
||
|
if index
|
||
|
StatisticType.where({statistic_index_id: index.id}).destroy_all
|
||
|
|
||
|
StatisticType.create!({statistic_index_id: index.id, key: 'month', label: 'Abonnements mensuels', graph: true, simple: true})
|
||
|
StatisticType.create!({statistic_index_id: index.id, key: 'year', label: 'Abonnements annuels', graph: true, simple: true})
|
||
|
end
|
||
|
end
|
||
|
end
|