如何在 ruby on Rails 中创建删除表的迁移
我想删除 Rails 应用程序中的一个表,但我无法使用回滚,因为我很久以前创建了这个表,并且自该表以来我创建了很多其他表。
应该如何命名删除表迁移文件,有没有办法用rails生成生成它?
I want to delete a table in my rails app but i cannot use rollback, because i created this table a long time ago, and i have a LOT of other tables created since that one.
How is supposed to be named a drop table migration file and is there a way to genrate it with rails generate?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
再创建一个迁移来删除该表。该类应该具有该方法,
请小心,因为您将无法回滚以获取删除表时将丢失的所有数据。
Create one more migration to drop the table. The class should have the method
Be careful as you will not be able to rollback to get all the data you will lose while dropping the table.