|
@@ -22,12 +22,18 @@ module Blazer
|
|
end
|
|
end
|
|
|
|
|
|
def copy_migration
|
|
def copy_migration
|
|
- migration_template "install.rb", "db/migrate/install_blazer.rb"
|
|
|
|
|
|
+ migration_template "install.rb", "db/migrate/install_blazer.rb", migration_version: migration_version
|
|
end
|
|
end
|
|
|
|
|
|
def copy_config
|
|
def copy_config
|
|
template "config.yml", "config/blazer.yml"
|
|
template "config.yml", "config/blazer.yml"
|
|
end
|
|
end
|
|
|
|
+
|
|
|
|
+ def migration_version
|
|
|
|
+ if ActiveRecord::VERSION::MAJOR >= 5
|
|
|
|
+ "[#{ActiveRecord::VERSION::MAJOR}.#{ActiveRecord::VERSION::MINOR}]"
|
|
|
|
+ end
|
|
|
|
+ end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|