16 lines
776 B
TypeScript
16 lines
776 B
TypeScript
import { Migration } from "@mikro-orm/migrations"
|
|
|
|
export class InitialSetup20240221144943 extends Migration {
|
|
async up(): Promise<void> {
|
|
this.addSql(
|
|
'create table if not exists "api_key" ("id" text not null, "token" text not null, "salt" text not null, "redacted" text not null, "title" text not null, "type" text not null, "last_used_at" timestamptz null, "created_by" text not null, "created_at" timestamptz not null default now(), "revoked_by" text null, "revoked_at" timestamptz null, constraint "api_key_pkey" primary key ("id"));'
|
|
)
|
|
this.addSql(
|
|
'CREATE UNIQUE INDEX IF NOT EXISTS "IDX_api_key_token_unique" ON "api_key" (token);'
|
|
)
|
|
this.addSql(
|
|
'CREATE INDEX IF NOT EXISTS "IDX_api_key_type" ON "api_key" (type);'
|
|
)
|
|
}
|
|
}
|