mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 07:43:08 +02:00
28 lines
587 B
TypeScript
28 lines
587 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Entity, Index, Column, PrimaryGeneratedColumn } from 'typeorm';
|
|
import { id } from './util/id.js';
|
|
import type { MiUser } from './User.js';
|
|
|
|
@Entity('user_ip')
|
|
@Index(['userId', 'ip'], { unique: true })
|
|
export class MiUserIp {
|
|
@PrimaryGeneratedColumn()
|
|
public id: string;
|
|
|
|
@Column('timestamp with time zone', {
|
|
})
|
|
public createdAt: Date;
|
|
|
|
@Index()
|
|
@Column(id())
|
|
public userId: MiUser['id'];
|
|
|
|
@Column('varchar', {
|
|
length: 128,
|
|
})
|
|
public ip: string;
|
|
}
|