standalone_migrations 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/standalone_migrations.gemspec +1 -1
- data/tasks/standalone_migrations.rake +1 -1
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
@@ -16,7 +16,7 @@ namespace :db do
|
|
16
16
|
|
17
17
|
desc "Migrate the database using the scripts in the migrate directory. Target specific version with VERSION=x. Turn off output with VERBOSE=false."
|
18
18
|
task :migrate => :ar_init do
|
19
|
-
require
|
19
|
+
require "#{File.dirname(__FILE__)}/../vendor/migration_helpers/init"
|
20
20
|
ActiveRecord::Migration.verbose = ENV["VERBOSE"] ? ENV["VERBOSE"] == "true" : true
|
21
21
|
ActiveRecord::Migrator.migrate(APP_BASE + "/migrations/", ENV["VERSION"] ? ENV["VERSION"].to_i : nil)
|
22
22
|
Rake::Task[ "db:schema:dump" ].execute
|