32
33
34
35
36
37
38
39
40
41
42
|
# File 'lib/generators/reputation_system/reputation_system_generator.rb', line 32
def create_migration_files
create_migration_file_if_not_exist 'create_reputation_system'
create_migration_file_if_not_exist 'add_reputations_index'
create_migration_file_if_not_exist 'add_evaluations_index'
create_migration_file_if_not_exist 'add_reputation_messages_index'
create_migration_file_if_not_exist 'change_evaluations_index_to_unique'
create_migration_file_if_not_exist 'change_reputation_messages_index_to_unique'
create_migration_file_if_not_exist 'change_reputations_index_to_unique'
create_migration_file_if_not_exist 'add_data_to_reputations'
create_migration_file_if_not_exist 'add_data_to_evaluations'
end
|