DropTable method

Future<void> DropTable(
  1. EFTable<IModel> table
)

Implementation

Future<void> DropTable(EFTable table) async {
  await Execute("DROP TABLE ${table.tableName}");
}