dropIfExists method

  1. @override
void dropIfExists(
  1. String tableName
)
override

Drops the table only if it exists.

Implementation

@override
void dropIfExists(String tableName) {
  _queries.add('DROP TABLE IF EXISTS "$tableName";');
}