62 lines
1.2 KiB
TypeScript
62 lines
1.2 KiB
TypeScript
import { DateTime } from 'luxon';
|
|
import {
|
|
column,
|
|
BaseModel,
|
|
hasMany, HasMany,
|
|
// manyToMany,
|
|
// ManyToMany,
|
|
SnakeCaseNamingStrategy,
|
|
} from '@ioc:Adonis/Lucid/Orm';
|
|
import HashValue from './HashValue';
|
|
|
|
export default class File extends BaseModel {
|
|
public static namingStrategy = new SnakeCaseNamingStrategy();
|
|
public static primaryKey = 'id';
|
|
public static table = 'document_files';
|
|
public static selfAssignPrimaryKey = false;
|
|
|
|
@column({
|
|
isPrimary: true,
|
|
})
|
|
public id: number;
|
|
|
|
@column({})
|
|
public pathName: string;
|
|
|
|
@column()
|
|
public label: string;
|
|
|
|
@column()
|
|
public comment: string;
|
|
|
|
@column()
|
|
public mimetype: string;
|
|
|
|
@column()
|
|
public language: string;
|
|
|
|
@column()
|
|
public fileSize: bigint;
|
|
|
|
@column()
|
|
public visibleInOai: boolean;
|
|
|
|
@column()
|
|
public sortOrder: number;
|
|
|
|
@column.dateTime({ autoCreate: true })
|
|
public createdAt: DateTime;
|
|
|
|
@column.dateTime({ autoCreate: true, autoUpdate: true })
|
|
public updatedAt: DateTime;
|
|
|
|
// public function hashvalues()
|
|
// {
|
|
// return $this->hasMany(HashValue::class, 'file_id', 'id');
|
|
// }
|
|
|
|
@hasMany(() => HashValue, {
|
|
foreignKey: 'file_id',
|
|
})
|
|
public hashvalues: HasMany<typeof HashValue>;
|
|
} |