refactor(backend): update directory structure for models
This commit is contained in:
28
packages/backend/src/models/UserIp.ts
Normal file
28
packages/backend/src/models/UserIp.ts
Normal file
@@ -0,0 +1,28 @@
|
||||
/*
|
||||
* 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;
|
||||
}
|
Reference in New Issue
Block a user