schema.rb

What is the preferred way to manage schema.rb in git?

喜夏-厌秋 提交于 2019-11-26 17:41:40
问题 I don't want to add schema.rb to .gitignore , because I want to be able to load a new database schema from that file. However, keeping it checked in is causing all sorts of spurious conflicts that are easily resolved by a fresh db:migrate:reset . Basically I want a way to: Keep schema.rb in the repository for deploy-time database setup Keep schema.rb in '.gitignore' for general development There would be one or two people responsible for updating schema.rb and knowing that it was correct. Is