create abstract method

void create(
  1. String tableName,
  2. void callback(
    1. Blueprint table
    )
)

Creates a new table with the given tableName and callback.

The callback receives a Blueprint to define the table columns and constraints.

Implementation

void create(String tableName, void Function(Blueprint table) callback);