dropIfExists static method

String dropIfExists(
  1. String table
)

Drop table if exists.

table is the name of the table to drop.

Implementation

static String dropIfExists(String table) {
  return DB.connection()!.driver.dropIfExists(table);
}