drop method

Future<void> drop()

Implementation

Future<void> drop()
{
  final sql = 'drop database ${env.dbName}';
  return _execute(sql);
}