create method
Creates a new table with the given name using the callback to define columns.
Implementation
Future<void> create(String name, void Function(Blueprint table) callback) async {
final blueprint = Blueprint(name);
callback(blueprint);
await _db.query(blueprint._toCreateSql());
}