createTable abstract method

String createTable(
  1. TableInfo table, {
  2. bool ifNotExists = false,
})

Generates a CREATE TABLE statement.

With ifNotExists, an existing table with this name is left alone.

Implementation

String createTable(TableInfo table, {bool ifNotExists = false});