feat(server): add updatedAt to Asset, Album and User (#1566)

* feat: add updatedAt info to DTO and generate api

* chore: remove unsued file

* chore: Add update statement to add/remove asset/user to album

* fix: test
This commit is contained in:
Alex
2023-02-06 10:24:58 -06:00
committed by GitHub
parent b8d2f5b373
commit 29bb1f7ef2
25 changed files with 190 additions and 75 deletions
@@ -0,0 +1,17 @@
import { MigrationInterface, QueryRunner } from 'typeorm';
export class AddUpdatedAtColumnToAlbumsUsersAssets1675667878312 implements MigrationInterface {
name = 'AddUpdatedAtColumnToAlbumsUsersAssets1675667878312';
public async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(`ALTER TABLE "albums" ADD "updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now()`);
await queryRunner.query(`ALTER TABLE "users" ADD "updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now()`);
await queryRunner.query(`ALTER TABLE "assets" ADD "updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now()`);
}
public async down(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(`ALTER TABLE "albums" DROP COLUMN "updatedAt"`);
await queryRunner.query(`ALTER TABLE "assets" DROP COLUMN "updatedAt"`);
await queryRunner.query(`ALTER TABLE "users" DROP COLUMN "updatedAt"`);
}
}