rails2.0和数据库有关的 rake db: 任务

  1. db:charset 检索当前环境下数据库的字符设置    
  2. db:collation 检索当前环境下数据库的校对    
  3. db:create 用config\database.yml中的定义创建当前 RAILS_ENV 项目环境下的数据库    
  4. db:create:all 用config\database.yml中的定义创建所有数据库    
  5. db:drop 删除当前 RAILS_ENV项目环境中的数据库    
  6. db:drop:all 删除所有在 config\database.yml中定义的数据库    
  7. db:reset 从db\schema.rb中为当前环境重建数据库(先删后建).    
  8. db:rollback 回滚(清华出版社一本SQLSERVER书的名词[很奇怪为什么不直接用滚回])数据库到前一个版本. 指定回滚到哪一步要用 STEP=n 参数    
  9. db:version 检索当前模式下的版本  
  10. db:migrate 迁移
  11.  
  12.  
  13. db:charset Retrieves the charset for the current environment’s database
  14. db:collation Retrieves the collation for the current environment’s database db:create Create the database defined in config/database.yml for the current RAILS_ENV
  15. db:create:all Create all the local databases defined in config/database.yml
  16. db:drop Drops the database for the current RAILS_ENV
  17. db:drop:all Drops all the local databases defined in config/database.yml
  18. db:reset Drops and recreates the database from db/schema.rb for the current environment.
  19.  db:rollback Rolls the schema back to the previous version. Specify the number of steps with STEP=n
  20.  db:version Retrieves the current schema version number

你可能感兴趣的:(Rails,出版)