2023-07-27 07:31:52 +02:00
|
|
|
/*
|
2024-02-13 16:59:27 +01:00
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 07:31:52 +02:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2019-07-22 03:15:00 +02:00
|
|
|
import { PrimaryColumn, Entity, Column } from 'typeorm';
|
|
|
|
|
2023-08-16 10:51:28 +02:00
|
|
|
@Entity('used_username')
|
|
|
|
export class MiUsedUsername {
|
2019-07-22 03:15:00 +02:00
|
|
|
@PrimaryColumn('varchar', {
|
|
|
|
length: 128,
|
|
|
|
})
|
|
|
|
public username: string;
|
|
|
|
|
|
|
|
@Column('timestamp with time zone')
|
|
|
|
public createdAt: Date;
|
|
|
|
|
2023-08-16 10:51:28 +02:00
|
|
|
constructor(data: Partial<MiUsedUsername>) {
|
2019-07-22 03:15:00 +02:00
|
|
|
if (data == null) return;
|
|
|
|
|
|
|
|
for (const [k, v] of Object.entries(data)) {
|
|
|
|
(this as any)[k] = v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|