Backstage
    Preparing search index...

    Manages access to databases that plugins get.

    See the service documentation for more details.

    interface DatabaseService {
        migrations?: { skip?: boolean };
        getClient(): Promise<Knex<any, any[]>>;
    }
    Index

    Properties

    Methods

    Properties

    migrations?: { skip?: boolean }

    This property is used to control the behavior of database migrations.

    Type Declaration

    • Optionalskip?: boolean

      skip database migrations. Useful if connecting to a read-only database.

      false
      

    Methods