Хабр Курсы для всех
РЕКЛАМА
Практикум, Хекслет, SkyPro, авторские курсы — собрали всех и попросили скидки. Осталось выбрать!
class CreateMyRelation < ActiveRecord::Migration
def up
execute "CREATE SCHEMA myschema"
create_table 'myschema.my_relations' do |t|
t.string :test_field
t.timestamps
end
end
def down
drop_table 'myschema.my_relations'
execute "DROP SCHEMA myschema"
end
end
rake aborted!
An error has occurred, this and all later migrations canceled:
PG::Error: ERROR: schema "app" does not exist
Rails и схемы Postgres