daton_app/app/models/http/Session.model.ts
2020-10-05 11:44:05 -05:00

20 lines
547 B
TypeScript

import { SessionModel } from '../../../bundle/daton.ts'
import { Field, Type } from '../../../bundle/daton_orm.ts'
export default class Session extends SessionModel {
protected static table = 'sessions'
protected static key = 'session_key'
protected static readonly CREATED_AT = 'start_time'
protected static readonly UPDATED_AT = null // No updated at
@Field(Type.varchar)
protected session_key!: string
@Field(Type.int)
protected user_id?: number
@Field(Type.timestamp)
protected start_time!: Date
}