Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何生成 Rails 应用程序中使用的数据库模式的图像?
你试过rake db:schema:dump吗?
rake db:schema:dump
本质上,确保您的database.yml文件引用了您希望转储的数据库,然后运行该命令。它将获取所述数据库中的所有表和索引,然后将其写入schema.rb.
database.yml
schema.rb
请注意,schema.rb一旦它包含转储,您应该重命名;否则,它可能会被覆盖。