toDropTableSql method

String toDropTableSql(
  1. DatabaseType dbType
)

Generate DROP TABLE SQL

Implementation

String toDropTableSql(DatabaseType dbType) {
  return 'DROP TABLE IF EXISTS $tableName;';
}