mirror of
https://github.com/Art051/immich.git
synced 2025-08-11 19:29:00 +00:00
* refactor: user repository * refactor: user module * refactor: move database into infra * refactor(cli): use user core * chore: import path * chore: tests
18 lines
769 B
TypeScript
18 lines
769 B
TypeScript
import { MigrationInterface, QueryRunner } from 'typeorm';
|
|
|
|
export class RenameAssetAlbumIdSequence1656888591977 implements MigrationInterface {
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`alter sequence asset_shared_album_id_seq rename to asset_album_id_seq;`);
|
|
await queryRunner.query(
|
|
`alter table asset_album alter column id set default nextval('asset_album_id_seq'::regclass);`,
|
|
);
|
|
}
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`alter sequence asset_album_id_seq rename to asset_shared_album_id_seq;`);
|
|
await queryRunner.query(
|
|
`alter table asset_album alter column id set default nextval('asset_shared_album_id_seq'::regclass);`,
|
|
);
|
|
}
|
|
}
|