如何在 ruby​​ on Rails 中创建删除表的迁移

发布于 2024-12-03 07:41:11 字数 108 浏览 1 评论 0原文

我想删除 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

囍笑 2024-12-10 07:41:11

再创建一个迁移来删除该表。该类应该具有该方法,

def self.up
  drop_table :table_name
end

请小心,因为您将无法回滚以获取删除表时将丢失的所有数据。

Create one more migration to drop the table. The class should have the method

def self.up
  drop_table :table_name
end

Be careful as you will not be able to rollback to get all the data you will lose while dropping the table.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文