rake-db 2.8.22 → 2.8.23

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
@@ -264,7 +264,7 @@ declare namespace RakeDbAst {
264
264
 
265
265
  type Db = DbResult<DefaultColumnTypes>;
266
266
  type BaseTable<CT extends ColumnTypesBase> = {
267
- name: string;
267
+ exportAs: string;
268
268
  filePath: string;
269
269
  nowSQL?: string;
270
270
  new (): {
@@ -303,7 +303,7 @@ type AppCodeUpdaterParams = {
303
303
  logger: QueryLogOptions['logger'];
304
304
  baseTable: {
305
305
  filePath: string;
306
- name: string;
306
+ exportAs: string;
307
307
  };
308
308
  };
309
309
  type AppCodeUpdater = {