生成 Rails 应用程序中使用的数据库架构的图像
如何生成 Rails 应用程序中使用的数据库模式的图像?
How can I go about generating an image of a database schema used in a Rails app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何生成 Rails 应用程序中使用的数据库模式的图像?
How can I go about generating an image of a database schema used in a Rails app?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您尝试过 rake db:schema:dump 吗?
本质上,请确保您的database.yml 文件引用您想要转储的数据库,然后运行该命令。 它将获取所述数据库中的所有表和索引,然后将其写入
schema.rb
。请注意,一旦包含转储,您应该重命名
schema.rb
; 否则,它可能会被覆盖。Have you tried
rake db:schema:dump
?Essentially, make sure that your
database.yml
file is referencing the database you wish to dump, and then run the command. It'll take all of the tables and indexes in said database and then write it out toschema.rb
.Note that you should rename
schema.rb
once it contains the dump; otherwise, it could it overwritten.尝试这个 ruby gem: https://voormedia.github.io/rails-erd
它将制作 PDF,您也可以对其进行自定义。
try this ruby gem: https://voormedia.github.io/rails-erd
It will make a PDF, which you can also customize.