mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 11:43:09 +02:00
b9cb6d1c10
将来ESMに移行しやすいように Related: #7658 なんかmochaが起動しなくなってるけど理由不明 すぐ直したい
58 lines
1.3 KiB
TypeScript
58 lines
1.3 KiB
TypeScript
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', {
|
|
comment: 'The created date of the RegistryItem.'
|
|
})
|
|
public createdAt: Date;
|
|
|
|
@Column('timestamp with time zone', {
|
|
comment: 'The updated date of the RegistryItem.'
|
|
})
|
|
public updatedAt: Date;
|
|
|
|
@Index()
|
|
@Column({
|
|
...id(),
|
|
comment: 'The owner ID.'
|
|
})
|
|
public userId: User['id'];
|
|
|
|
@ManyToOne(type => User, {
|
|
onDelete: 'CASCADE'
|
|
})
|
|
@JoinColumn()
|
|
public user: User | null;
|
|
|
|
@Column('varchar', {
|
|
length: 1024,
|
|
comment: 'The key of the RegistryItem.'
|
|
})
|
|
public key: string;
|
|
|
|
@Column('jsonb', {
|
|
default: {}, nullable: true,
|
|
comment: 'The value of the RegistryItem.'
|
|
})
|
|
public value: any | null;
|
|
|
|
@Index()
|
|
@Column('varchar', {
|
|
length: 1024, array: true, default: '{}'
|
|
})
|
|
public scope: string[];
|
|
|
|
// サードパーティアプリに開放するときのためのカラム
|
|
@Index()
|
|
@Column('varchar', {
|
|
length: 512, nullable: true
|
|
})
|
|
public domain: string | null;
|
|
}
|