Rails3如何进行数据库迁移+数据映射器
我使用了 dm-rails gem,它允许 datamapper 挂接到rails-3,生成了一个脚手架和一个迁移文件,做了 rake db:migrate 进行数据库迁移,但没有发生任何错误,没有迁移,任何人都可以建议我如何运行迁移数据映射器和rails-3。
I used dm-rails gem that allows datamapper to hook into rails-3 ,generated a scaffold and a migration file ,did rake db:migrate for database migration but nothing happens no error no migration, can any one suggest me how to run migrations with datamapper and rails-3.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你必须获得dm-rails,其中添加了2个特定的rake任务:
它执行破坏性自动迁移,因此它检查表是否存在,如果存在则删除它,然后再创建一次。
和
它升级您的数据库架构以匹配您的模型属性。
You have to get dm-rails that add among other things, 2 specific rake tasks:
it performs destructive automigration, so it checks if table exists, and if so then drop it, and create one more time.
and
It's upgrade your database schema to match your model properties.