Quantcast
Viewing all articles
Browse latest Browse all 8

creating a postgresql schema from inside a rails migration

If you ever need to create a schema from inside a migration, write this:

def up
  execute "CREATE SCHEMA some_schema"
end
 
def down
  execute "DROP SCHEMA some_schema"
end

Migration code is available for download here: code


Viewing all articles
Browse latest Browse all 8

Trending Articles