initialize_database#

async safir.database.initialize_database(engine, logger, *, schema, reset=False)#

Create and initialize a new database.

Parameters:
  • engine (AsyncEngine) – Database engine to use. Create with create_database_engine.

  • logger (BoundLogger) – Logger used to report problems

  • schema (MetaData) – Metadata for the database schema. Generally this will be Base.metadata where Base is the declarative base used as the base class for all ORM table definitions. The caller must ensure that all table definitions have been imported by Python before calling this function, or parts of the schema will be missing.

  • reset (bool, default: False) – If set to True, drop all tables and reprovision the database. Useful when running tests with an external database.

Raises:

DatabaseInitializationError – After five attempts, the database still could not be initialized. This is normally due to some connectivity issue to the database.

Return type:

None