mirror of
https://github.com/immich-app/immich.git
synced 2025-01-10 05:46:46 +01:00
8ebac41318
* refactor(server): tsconfigs * chore: dummy commit * fix: start.sh * chore: restore original entry scripts
26 lines
1 KiB
TypeScript
26 lines
1 KiB
TypeScript
import { MigrationInterface, QueryRunner } from 'typeorm';
|
|
|
|
export class CreateDeviceInfoTable1645130777674 implements MigrationInterface {
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`
|
|
create table if not exists device_info
|
|
(
|
|
id serial
|
|
constraint "PK_b1c15a80b0a4e5f4eebadbdd92c"
|
|
primary key,
|
|
"userId" varchar not null,
|
|
"deviceId" varchar not null,
|
|
"deviceType" varchar not null,
|
|
"notificationToken" varchar,
|
|
"createdAt" timestamp default now() not null,
|
|
"isAutoBackup" boolean default false not null,
|
|
constraint "UQ_ebad78f36b10d15fbea8560e107"
|
|
unique ("userId", "deviceId")
|
|
);
|
|
`);
|
|
}
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`drop table device_info`);
|
|
}
|
|
}
|