Sha256: 430f7b3bfa099017c606e3185b458d066316bf3186979722d1ad5e528824f0b3
Contents?: true
Size: 394 Bytes
Versions: 1
Compression:
Stored size: 394 Bytes
Contents
namespace :db do desc "Generates migrations as per structure design in your models but does not run them" task :update => :environment do Migrant::MigrationGenerator.new.run end desc "Generates migrations as per structure design in your models and runs them" task :upgrade => :environment do Rake::Task['db:migrate'].invoke if Migrant::MigrationGenerator.new.run end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
migrant-0.1.0 | lib/tasks/db.rake |