使用rake获取当前db模式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用rake获取当前db模式相关的知识,希望对你有一定的参考价值。
put this into lib/tasks and then run rake db:version
namespace :db do desc "Returns the current schema version" task :version => :environment do puts "Current version: " + ActiveRecord::Migrator.current_version.to_s end end
以上是关于使用rake获取当前db模式的主要内容,如果未能解决你的问题,请参考以下文章
获取:“迁移待定;运行 'bin/rake db:migrate RAILS_ENV=development' 来解决此问题。”克隆和迁移项目后
rake db:schema:load 不填充 schema_migrations 表
在 git hook 中使用 rake db:migrate - 未定义的类/模块编码