dropTable method

void dropTable(
  1. String table
)

Implementation

void dropTable(String table) {
  String sql = "DROP TABLE IF EXISTS ${table.escapeSQL}";
  execute(sql);
}