You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
331 B
16 lines
331 B
4 years ago
|
import { ISession } from 'connect-typeorm';
|
||
|
import { Index, Column, PrimaryColumn, Entity } from 'typeorm';
|
||
|
|
||
|
@Entity()
|
||
|
export class Session implements ISession {
|
||
|
@Index()
|
||
|
@Column('bigint')
|
||
|
public expiredAt = Date.now();
|
||
|
|
||
|
@PrimaryColumn('varchar', { length: 255 })
|
||
|
public id = '';
|
||
|
|
||
|
@Column('text')
|
||
|
public json = '';
|
||
|
}
|