18
19
20
21
22
23
24
25
26
27
28
29
|
# File 'lib/generators/tkh_content/create_or_update_migrations/create_or_update_migrations_generator.rb', line 18
def copy_migrations
puts 'creating or updating page migrations'
migration_template "create_pages.rb", "db/migrate/create_pages.rb"
migration_template "add_short_title_to_pages.rb", "db/migrate/add_short_title_to_pages.rb"
migration_template "add_author_to_pages.rb", "db/migrate/add_author_to_pages.rb"
migration_template "add_parent_id_to_pages.rb", "db/migrate/add_parent_id_to_pages.rb"
migration_template "create_tags.rb", "db/migrate/create_tags.rb"
migration_template "create_taggings.rb", "db/migrate/create_taggings.rb"
migration_template "create_contacts.rb", "db/migrate/create_contacts.rb"
migration_template "add_various_indices_to_pages.rb", "db/migrate/add_various_indices_to_pages.rb"
migration_template "create_comments.rb", "db/migrate/create_comments.rb"
end
|