mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 21:21:02 +00:00
chore(deps): bump all (#294)
This commit is contained in:
parent
1979d924c9
commit
38cf2ff549
69 changed files with 4681 additions and 3804 deletions
|
|
@ -5,7 +5,7 @@ import { TYPEORM_ENTITY_REPOSITORY } from "./entity-repository.decorator";
|
|||
|
||||
export class TypeOrmRepositoryModule {
|
||||
public static for<T extends new (...args: any[]) => any>(
|
||||
repositories: T[]
|
||||
repositories: T[],
|
||||
): DynamicModule {
|
||||
const providers: Provider[] = [];
|
||||
|
||||
|
|
@ -24,7 +24,7 @@ export class TypeOrmRepositoryModule {
|
|||
return new repository(
|
||||
baseRepository.target,
|
||||
baseRepository.manager,
|
||||
baseRepository.queryRunner
|
||||
baseRepository.queryRunner,
|
||||
);
|
||||
},
|
||||
});
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ export class CreateUsersTable0000000000001 implements MigrationInterface {
|
|||
}),
|
||||
],
|
||||
}),
|
||||
true
|
||||
true,
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ export class CreateLibraryTables0000000000002 implements MigrationInterface {
|
|||
}),
|
||||
],
|
||||
}),
|
||||
true
|
||||
true,
|
||||
);
|
||||
|
||||
await queryRunner.createTable(
|
||||
|
|
@ -64,7 +64,7 @@ export class CreateLibraryTables0000000000002 implements MigrationInterface {
|
|||
isUnique: true,
|
||||
}),
|
||||
],
|
||||
})
|
||||
}),
|
||||
);
|
||||
|
||||
await queryRunner.createTable(
|
||||
|
|
@ -94,7 +94,7 @@ export class CreateLibraryTables0000000000002 implements MigrationInterface {
|
|||
referencedTableName: "album",
|
||||
}),
|
||||
],
|
||||
})
|
||||
}),
|
||||
);
|
||||
|
||||
await queryRunner.createTable(
|
||||
|
|
@ -137,7 +137,7 @@ export class CreateLibraryTables0000000000002 implements MigrationInterface {
|
|||
}),
|
||||
],
|
||||
}),
|
||||
true
|
||||
true,
|
||||
);
|
||||
|
||||
await queryRunner.createTable(
|
||||
|
|
@ -180,7 +180,7 @@ export class CreateLibraryTables0000000000002 implements MigrationInterface {
|
|||
}),
|
||||
],
|
||||
}),
|
||||
true
|
||||
true,
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ export class CreateListensTable0000000000003 implements MigrationInterface {
|
|||
}),
|
||||
],
|
||||
}),
|
||||
true
|
||||
true,
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ export class CreateAuthSessionsTable0000000000004
|
|||
}),
|
||||
],
|
||||
}),
|
||||
true
|
||||
true,
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ export class CreateGenreTables0000000000005 implements MigrationInterface {
|
|||
}),
|
||||
],
|
||||
}),
|
||||
true
|
||||
true,
|
||||
);
|
||||
|
||||
await queryRunner.createTable(
|
||||
|
|
@ -77,7 +77,7 @@ export class CreateGenreTables0000000000005 implements MigrationInterface {
|
|||
}),
|
||||
],
|
||||
}),
|
||||
true
|
||||
true,
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ export class AddUpdatedAtColumnes0000000000006 implements MigrationInterface {
|
|||
name: "updatedAt",
|
||||
type: "timestamp",
|
||||
default: "NOW()",
|
||||
})
|
||||
}),
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ export class CreateApiTokensTable0000000000007 implements MigrationInterface {
|
|||
}),
|
||||
],
|
||||
}),
|
||||
true
|
||||
true,
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue