DropColumn constructor
SQLite doesn't have a catch-all drop column command. On migrate, the provider can search for
columns prefixed by _should_drop
and generate a statement that includes the schema of
the full table to be ALTER
ed.
Implementation
const DropColumn(
this.name, {
required this.onTable,
});