drop static method

Drop drop(
  1. String table, {
  2. bool onlyIfExists = false,
})

Returns a new Drop statement

Implementation

static Drop drop(String table, {bool onlyIfExists = false}) =>
    Drop(table, onlyIfExists: onlyIfExists);