drop method

Future<void> drop()

Drops the table if it already exists

Implementation

Future<void> drop() {
  final st = Sql.drop(tableName, onlyIfExists: true);
  return adapter.dropTable(st);
}