2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-02-16 14:09:41 +00:00
|
|
|
import { Entity, Index, Column, PrimaryGeneratedColumn } from 'typeorm';
|
2023-09-20 02:33:36 +00:00
|
|
|
import { id } from './util/id.js';
|
2023-08-16 08:51:28 +00:00
|
|
|
import type { MiUser } from './User.js';
|
2022-07-02 06:12:11 +00:00
|
|
|
|
2023-08-16 08:51:28 +00:00
|
|
|
@Entity('user_ip')
|
2022-07-02 06:12:11 +00:00
|
|
|
@Index(['userId', 'ip'], { unique: true })
|
2023-08-16 08:51:28 +00:00
|
|
|
export class MiUserIp {
|
2022-07-02 06:12:11 +00:00
|
|
|
@PrimaryGeneratedColumn()
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Column('timestamp with time zone', {
|
|
|
|
})
|
|
|
|
public createdAt: Date;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column(id())
|
2023-08-16 08:51:28 +00:00
|
|
|
public userId: MiUser['id'];
|
2022-07-02 06:12:11 +00:00
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128,
|
|
|
|
})
|
|
|
|
public ip: string;
|
|
|
|
}
|