mirror of
https://github.com/paricafe/misskey.git
synced 2025-01-07 09:30:50 -06:00
b875cc9949
* feat: アカウント作成にメールアドレス必須にするオプション
* ui
* fix bug
* fix bug
* fix bug
* 🎨
32 lines
528 B
TypeScript
32 lines
528 B
TypeScript
import { PrimaryColumn, Entity, Index, Column } from 'typeorm';
|
|
import { id } from '../id';
|
|
|
|
@Entity()
|
|
export class UserPending {
|
|
@PrimaryColumn(id())
|
|
public id: string;
|
|
|
|
@Column('timestamp with time zone')
|
|
public createdAt: Date;
|
|
|
|
@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;
|
|
}
|