create method

Future<void> create()

Creates all tables, triggers, views, indexes and everything else defined in the database, if they don't exist.

Implementation

Future<void> create() async {
  // Don't warn about multiple [ScopedDatabase]s being created, as this is the
  // expected behaviour: we open a new one for each authorized [UserId] to
  // separate data of different [MyUser]s from each other.
  driftRuntimeOptions.dontWarnAboutMultipleDatabases = true;

  await createMigrator().createAll();
}