39 lines
929 B
TypeScript
39 lines
929 B
TypeScript
|
import { column, SnakeCaseNamingStrategy, hasMany, HasMany } from '@ioc:Adonis/Lucid/Orm';
|
||
|
import BaseModel from './BaseModel';
|
||
|
import Collection from './Collection';
|
||
|
|
||
|
export default class CollectionRole extends BaseModel {
|
||
|
public static namingStrategy = new SnakeCaseNamingStrategy();
|
||
|
public static primaryKey = 'id';
|
||
|
public static table = 'collections_roles';
|
||
|
public static fillable: string[] = ['name', 'oai_name', 'visible'];
|
||
|
|
||
|
@column({
|
||
|
isPrimary: true,
|
||
|
})
|
||
|
public id: number;
|
||
|
|
||
|
@column({})
|
||
|
public name: string;
|
||
|
|
||
|
@column({})
|
||
|
public oai_name?: string;
|
||
|
|
||
|
@column({})
|
||
|
public position: number;
|
||
|
|
||
|
@column({})
|
||
|
public visible: boolean;
|
||
|
|
||
|
@column({})
|
||
|
public visible_frontdoor: boolean;
|
||
|
|
||
|
@column({})
|
||
|
public visible_oai: boolean;
|
||
|
|
||
|
@hasMany(() => Collection, {
|
||
|
foreignKey: 'role_id',
|
||
|
})
|
||
|
public collections: HasMany<typeof Collection>;
|
||
|
}
|