mirror of
https://github.com/immich-app/immich.git
synced 2025-06-23 15:34:03 -04:00
27 lines
1.0 KiB
TypeScript
27 lines
1.0 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`);
|
|
}
|
|
}
|