schemaAt abstract method

Future<InitializedSchema> schemaAt(
  1. int version
)

Creates a new database and instantiates the schema with the given version.

This can be used as a starting point for a complex schema migration test to verify data integrity. You can roughly follow these steps to write such tests:

If you only want to verify the schema without data, using startAt might be easier.

Implementation

Future<InitializedSchema> schemaAt(int version);