假设我有一个User模型,我想用2个模式设置postgresql:
test1.users
test2.users
有没有办法在运行迁移时指定我想要使用的架构?
rake db:migrate schema=test1
答案 0 :(得分:2)
Add an environment,将其命名为" test2",并在config / database.yml中定义您的架构。然后使用RAILS_ENV=test2 rake db:migrate
运行迁移。