refactor(backend): update directory structure for models
This commit is contained in:
		
							
								
								
									
										48
									
								
								packages/backend/src/models/AuthSession.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										48
									
								
								packages/backend/src/models/AuthSession.ts
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,48 @@ | ||||
| /* | ||||
|  * SPDX-FileCopyrightText: syuilo and other misskey contributors | ||||
|  * SPDX-License-Identifier: AGPL-3.0-only | ||||
|  */ | ||||
|  | ||||
| import { Entity, PrimaryColumn, Index, Column, ManyToOne, JoinColumn } from 'typeorm'; | ||||
| import { id } from './util/id.js'; | ||||
| import { MiUser } from './User.js'; | ||||
| import { MiApp } from './App.js'; | ||||
|  | ||||
| @Entity('auth_session') | ||||
| export class MiAuthSession { | ||||
| 	@PrimaryColumn(id()) | ||||
| 	public id: string; | ||||
|  | ||||
| 	@Column('timestamp with time zone', { | ||||
| 		comment: 'The created date of the AuthSession.', | ||||
| 	}) | ||||
| 	public createdAt: Date; | ||||
|  | ||||
| 	@Index() | ||||
| 	@Column('varchar', { | ||||
| 		length: 128, | ||||
| 	}) | ||||
| 	public token: string; | ||||
|  | ||||
| 	@Column({ | ||||
| 		...id(), | ||||
| 		nullable: true, | ||||
| 	}) | ||||
| 	public userId: MiUser['id'] | null; | ||||
|  | ||||
| 	@ManyToOne(type => MiUser, { | ||||
| 		onDelete: 'CASCADE', | ||||
| 		nullable: true, | ||||
| 	}) | ||||
| 	@JoinColumn() | ||||
| 	public user: MiUser | null; | ||||
|  | ||||
| 	@Column(id()) | ||||
| 	public appId: MiApp['id']; | ||||
|  | ||||
| 	@ManyToOne(type => MiApp, { | ||||
| 		onDelete: 'CASCADE', | ||||
| 	}) | ||||
| 	@JoinColumn() | ||||
| 	public app: MiApp | null; | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 syuilo
					syuilo