# File lib/dm-migrations/sql/postgresql.rb, line 12
    def recreate_database
      execute 'DROP SCHEMA IF EXISTS test CASCADE'
      execute 'CREATE SCHEMA test'
      execute 'SET search_path TO test'
    end