rake-db 2.10.52 → 2.10.54

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -90,7 +90,7 @@ type ConstraintArg = {
90
90
  * @param up - migrate or rollback
91
91
  * @param config - config of `rakeDb`
92
92
  */
93
- declare const createMigrationInterface: <CT extends Record<string, orchid_core.AnyColumnTypeCreator>>(tx: TransactionAdapter, up: boolean, config: RakeDbConfig<CT>) => DbMigration;
93
+ declare const createMigrationInterface: <CT extends Record<string, orchid_core.AnyColumnTypeCreator>>(tx: TransactionAdapter, up: boolean, config: RakeDbConfig<CT>) => DbMigration<CT>;
94
94
  declare class Migration<CT extends ColumnTypesBase> {
95
95
  adapter: TransactionAdapter;
96
96
  log?: QueryLogObject;