Interfaceplugin-kysely-postgresv0.2.1KyselyMigrationsOptionsOptions that describe where migrations live and how the migrator should behave. interface KyselyMigrationsOptionsMember overviewPropertiesallowUnorderedMigrationsmigrationLockTableNamemigrationTableNamemigrationTableSchemanameComparatoronStartuppathPropertiesoptionalallowUnorderedMigrationsAllow running migrations even if new ones are inserted out of order readonly allowUnorderedMigrations: booleanoptionalmigrationLockTableNameCustom lock table name used by the migrator readonly migrationLockTableName: stringoptionalmigrationTableNameCustom table name used to track executed migrations readonly migrationTableName: stringoptionalmigrationTableSchemaSchema that contains the migration bookkeeping tables readonly migrationTableSchema: stringoptionalnameComparatorComparator that determines execution order for migrations readonly nameComparator: (nameA: string, nameB: string) => numberoptionalonStartupBehavior when the plugin connects. true/undefined runs to latest. readonly onStartup: boolean | MigrationOptionspathDirectory path, single file path, or array of migration files readonly path: string | string[]
optionalallowUnorderedMigrationsAllow running migrations even if new ones are inserted out of order readonly allowUnorderedMigrations: boolean
optionalmigrationLockTableNameCustom lock table name used by the migrator readonly migrationLockTableName: string
optionalmigrationTableNameCustom table name used to track executed migrations readonly migrationTableName: string
optionalmigrationTableSchemaSchema that contains the migration bookkeeping tables readonly migrationTableSchema: string
optionalnameComparatorComparator that determines execution order for migrations readonly nameComparator: (nameA: string, nameB: string) => number
optionalonStartupBehavior when the plugin connects. true/undefined runs to latest. readonly onStartup: boolean | MigrationOptions