LocalMigrationArtifact constructor

const LocalMigrationArtifact({
  1. required String name,
  2. required String directoryPath,
  3. required String beforeSchema,
  4. required String afterSchema,
  5. required String migrationSql,
  6. required List<String> warnings,
  7. required int statementCount,
  8. required bool rebuildRequired,
  9. required String checksum,
})

Creates a local migration artifact descriptor.

Implementation

const LocalMigrationArtifact({
  required this.name,
  required this.directoryPath,
  required this.beforeSchema,
  required this.afterSchema,
  required this.migrationSql,
  required this.warnings,
  required this.statementCount,
  required this.rebuildRequired,
  required this.checksum,
});