migrate
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:1k
源码类别:

Ajax

开发平台:

Others

  1. #!/usr/bin/env ruby
  2. require 'optparse'
  3. require File.dirname(__FILE__) + '/../config/boot'
  4. options = { :environment => (ENV['RUBY_ENV'] || "development").dup }
  5. ARGV.options do |opts|
  6.   script_name = File.basename($0)
  7.   
  8.   opts.banner = "Usage: migrate [options]"
  9.   opts.separator ""
  10.   
  11.   opts.on("-e", "--environment=name", String,
  12.           "Specifies the environment to migrate (test/development/production).",
  13.           "Default: development") { |options[:environment]| }
  14.   
  15.   opts.separator ""
  16.   
  17.   opts.on("-h", "--help",
  18.           "Show this help message.") { puts opts; exit }
  19.   
  20. end
  21. ENV["RAILS_ENV"] = options[:environment]
  22. RAILS_ENV.replace(options[:environment]) if defined?(RAILS_ENV)
  23. require RAILS_ROOT + '/config/environment'
  24. ActiveRecord::Migrator.migrate(RAILS_ROOT + "db/migrate/",
  25.                                ENV["VERSION"] ? ENV["VERSION"].to_i : nil )