createTable method

String createTable()

Implementation

String createTable() {
  return '''
    CREATE TABLE $table (
      $uuid TEXT PRIMARY KEY,
      $name TEXT,
      $columns
      $isActive INTEGER,
      $by TEXT,
      $createdAt INTEGER,
      $updatedAt INTEGER,
      $serverAt INTEGER,
      $deleted INTEGER
    )
  ''';
}