PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Migrazioni Rails per schemi postgreSQL

Ho una libreria schema_utils che uso e ha il seguente metodo per gestire le migrazioni:

  def self.with_schema(schema_name, &block)
    conn = ActiveRecord::Base.connection
    old_schema_search_path = conn.schema_search_path
    conn.schema_search_path = schema_name
    begin
      yield
    ensure
      conn.schema_search_path = old_schema_search_path
    end
  end

Quindi utilizzo le migrazioni normalmente in modo da poter continuare a chiamare rake:migrateNow, nelle tue migrazioni puoi usare:

...
schemas.each do |schema|
  SchemaUtils.with_schema(schema) do
    #Put migration code here
    #e.g. add_column :xyz, ...
  end
end

Poiché tendo a mappare gli schemi sui codici account, procedo come segue:

Account.for_each do |account|
  SchemaUtils.with_schema(account.code) do
    #Put migration code here
  end
end