2023-07-27 00:31:52 -05:00
|
|
|
/*
|
2024-02-13 09:59:27 -06:00
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 00:31:52 -05:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2021-10-07 23:37:02 -05:00
|
|
|
import { PrimaryColumn, Entity, Index, Column } from 'typeorm';
|
2023-09-19 21:33:36 -05:00
|
|
|
import { id } from './util/id.js';
|
2021-10-07 23:37:02 -05:00
|
|
|
|
2023-08-16 03:51:28 -05:00
|
|
|
@Entity('user_pending')
|
|
|
|
export class MiUserPending {
|
2021-10-07 23:37:02 -05:00
|
|
|
@PrimaryColumn(id())
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Index({ unique: true })
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128,
|
|
|
|
})
|
|
|
|
public code: string;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128,
|
|
|
|
})
|
|
|
|
public username: string;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128,
|
|
|
|
})
|
|
|
|
public email: string;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128,
|
|
|
|
})
|
|
|
|
public password: string;
|
|
|
|
}
|