WIP server side.

This commit is contained in:
Ahmed Bouhuolia
2020-01-22 02:09:45 +02:00
parent de905d7e7c
commit 488709088b
123 changed files with 14885 additions and 771 deletions

View File

@@ -0,0 +1,16 @@
import { mixin } from 'objection';
import BaseModel from '@/models/Model';
import MetableCollection from '@/lib/Metable/MetableCollection';
export default class Option extends mixin(BaseModel, [mixin]) {
/**
* Table name.
*/
static get tableName() {
return 'options';
}
static get collection() {
return MetableCollection;
}
}