如何为Mysql中的所有表创建模型rb文件
我编写了一个简单的迁移文件,它创建了大约十个表。这一切都创造得很完美。现在我需要在 app/models 文件夹中创建十个等效的模型文件。我可以手动完成。但我想知道是否有任何 rake 任务可以执行此操作。
非常感谢对此的提示/建议。
I wrote a simple migration file that creates around ten tables. It all created perfectly. Now I need to create ten equivalent model files in the app/models folder. I can do it manually. But I am wondering if there is any rake task available to do this.
Tips/advise on this is much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
自动:http://magicmodels.rubyforge.org/magic_model_generator/
手动:http://forums.devshed.com/showpost.php?p=1957164&postcount=2
Automatically: http://magicmodels.rubyforge.org/magic_model_generator/
Manually: http://forums.devshed.com/showpost.php?p=1957164&postcount=2
您可以使用相同的 Rails 模型生成器创建模型和迁移。这还将创建单元测试和固定装置。
Rails 2.3.x:
Rails 3.0.x
您还可以使用以下选项(取自 Rails 2.3.8,可能在 3.0 中已更改)
You can create a model and migration using the same rails model generator. This will also create a unit test and fixtures.
Rails 2.3.x:
Rails 3.0.x
You can also use the following options (taken from Rails 2.3.8 and might have changed in 3.0)