我在
this article之后开发一个多租户应用程序.问题是我第一次运行所有迁移时.在schema.rb文件中只是公共模式的表,但是其他模式发生了什么?并且如何创建具有不同结构的其他模式给公众,我不想使用宝石.
见下面的例子
要为公共模式创建的表
class CreatePerspectives < ActiveRecord::Migration include MultiSchema def up with_in_schemas :only => :public do # Create table perspectives end end def down with_in_schemas :only => :public do drop_table :prespectives end end end
要为私有模式创建的表
class CreateObjectives < ActiveRecord::Migration include MultiSchema def change with_in_schemas :except => :public do # Create objectives table end end end
schema.rb
ActiveRecord::Schema.define(version: 20130810172443) do create_table "perspectives",force: true do |t| t.string "name" t.datetime "created_at" t.datetime "updated_at" end end@H_301_16@