2023-07-27 08:31:52 +03:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2021-10-08 07:37:02 +03:00
|
|
|
import { PrimaryColumn, Entity, Index, Column } from 'typeorm';
|
2023-09-20 05:33:36 +03:00
|
|
|
import { id } from './util/id.js';
|
2021-10-08 07:37:02 +03:00
|
|
|
|
2023-08-16 11:51:28 +03:00
|
|
|
@Entity('user_pending')
|
|
|
|
export class MiUserPending {
|
2021-10-08 07:37:02 +03: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;
|
|
|
|
}
|