Skip to content

Instantly share code, notes, and snippets.

@noahd1
Created August 4, 2009 04:17
Show Gist options
  • Save noahd1/161016 to your computer and use it in GitHub Desktop.
Save noahd1/161016 to your computer and use it in GitHub Desktop.
class DeleteDatabase < ActiveRecord::Migration
def self.up
execute <<-SQL
DROP DATABASE weplay_production;
SQL
end
def self.down
puts 'see manual'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment