schemaMigration property

String? schemaMigration
getter/setter pair

Configure how to perform Postgresql schema migration.

Optional. Possible string values are:

  • "SQL_SCHEMA_MIGRATION_UNSPECIFIED" : Unspecified SQL schema migration.
  • "MIGRATE_COMPATIBLE" : Connect to the SQL database and identify any missing SQL resources used in the given Firebase Data Connect Schema. Automatically create necessary SQL resources (SQL table, column, etc) before deploying the schema. During migration steps, the SQL Schema must comply with the previous before_deploy setting in case the migration is interrupted. Therefore, the previous before_deploy setting must not be schema_validation=STRICT.

Implementation

core.String? schemaMigration;