mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-25 11:16:31 -05:00
fix(session-entity): update for connect-typeorm v2
Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
39f6ef5e8e
commit
62be0ba3c0
1 changed files with 11 additions and 1 deletions
|
@ -4,7 +4,14 @@
|
||||||
* SPDX-License-Identifier: AGPL-3.0-only
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||||||
*/
|
*/
|
||||||
import { ISession } from 'connect-typeorm';
|
import { ISession } from 'connect-typeorm';
|
||||||
import { Column, Entity, Index, ManyToOne, PrimaryColumn } from 'typeorm';
|
import {
|
||||||
|
Column,
|
||||||
|
DeleteDateColumn,
|
||||||
|
Entity,
|
||||||
|
Index,
|
||||||
|
ManyToOne,
|
||||||
|
PrimaryColumn,
|
||||||
|
} from 'typeorm';
|
||||||
|
|
||||||
import { Author } from '../authors/author.entity';
|
import { Author } from '../authors/author.entity';
|
||||||
|
|
||||||
|
@ -20,6 +27,9 @@ export class Session implements ISession {
|
||||||
@Column('text')
|
@Column('text')
|
||||||
public json = '';
|
public json = '';
|
||||||
|
|
||||||
|
@DeleteDateColumn()
|
||||||
|
public destroyedAt?: Date;
|
||||||
|
|
||||||
@ManyToOne(() => Author, (author) => author.sessions)
|
@ManyToOne(() => Author, (author) => author.sessions)
|
||||||
author: Promise<Author>;
|
author: Promise<Author>;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue