iceshrimp-legacy/packages/backend/src/models/entities/registry-item.ts

66 lines
1.3 KiB
TypeScript
Raw Normal View History

2023-01-13 05:40:33 +01:00
import {
PrimaryColumn,
Entity,
Index,
JoinColumn,
Column,
ManyToOne,
} from "typeorm";
import { User } from "./user.js";
import { id } from "../id.js";
// TODO: 同じdomain、同じscope、同じkeyのレコードは二つ以上存在しないように制約付けたい
@Entity()
export class RegistryItem {
@PrimaryColumn(id())
public id: string;
@Column('timestamp with time zone', {
2021-12-09 15:58:30 +01:00
comment: 'The created date of the RegistryItem.',
})
public createdAt: Date;
@Column('timestamp with time zone', {
2021-12-09 15:58:30 +01:00
comment: 'The updated date of the RegistryItem.',
})
public updatedAt: Date;
@Index()
@Column({
...id(),
2021-12-09 15:58:30 +01:00
comment: 'The owner ID.',
})
2023-01-13 05:40:33 +01:00
public userId: User["id"];
@ManyToOne(type => User, {
2021-12-09 15:58:30 +01:00
onDelete: 'CASCADE',
})
@JoinColumn()
public user: User | null;
@Column('varchar', {
length: 1024,
2021-12-09 15:58:30 +01:00
comment: 'The key of the RegistryItem.',
})
public key: string;
@Column('jsonb', {
default: {}, nullable: true,
2021-12-09 15:58:30 +01:00
comment: 'The value of the RegistryItem.',
})
public value: any | null;
@Index()
@Column('varchar', {
2021-12-09 15:58:30 +01:00
length: 1024, array: true, default: '{}',
})
public scope: string[];
// サードパーティアプリに開放するときのためのカラム
@Index()
@Column('varchar', {
2021-12-09 15:58:30 +01:00
length: 512, nullable: true,
})
public domain: string | null;
}