standalone_migrations 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
|