class PgConn::RdbmsMethods

def drop(database, force: false)

Drop a database
def drop(database, force: false)
  conn.execute "drop database if exists \"#{database}\"#{force ? ' with (force)' : ''}"
  true
end