createDatabaseTableSQL property

String get createDatabaseTableSQL

Returns the SQL statement to create the entire table, including entity-specific fields.

Implementation

String get createDatabaseTableSQL => '''
  CREATE TABLE $tableName (
    ${getDatabaseCreationSQLForSyncable()}
    ${getOtherFieldsInSQL()}
  );
''';