drop static method

String drop(
  1. String table
)

Drop table.

table is the name of the table to drop.

Implementation

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