mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
* refactor: database repository * fix error reindex check * chore: remove WIP code --------- Co-authored-by: mertalev <101130780+mertalev@users.noreply.github.com>
23 lines
941 B
TypeScript
23 lines
941 B
TypeScript
import { MigrationInterface, QueryRunner } from 'typeorm';
|
|
|
|
export class CreateUserTable1645130759468 implements MigrationInterface {
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`CREATE EXTENSION IF NOT EXISTS "uuid-ossp"`);
|
|
await queryRunner.query(`
|
|
create table if not exists users
|
|
(
|
|
id uuid default uuid_generate_v4() not null
|
|
constraint "PK_a3ffb1c0c8416b9fc6f907b7433"
|
|
primary key,
|
|
email varchar not null,
|
|
password varchar not null,
|
|
salt varchar not null,
|
|
"createdAt" timestamp default now() not null
|
|
);
|
|
`);
|
|
}
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`drop table users`);
|
|
}
|
|
}
|