29 lines
711 B
JavaScript
29 lines
711 B
JavaScript
|
const Model = require('flitter-orm/src/model/Model')
|
||
|
const uuid = require('uuid/v4')
|
||
|
|
||
|
/*
|
||
|
* Database Model
|
||
|
* -------------------------------------------------------------
|
||
|
* Put some description here!
|
||
|
*/
|
||
|
class Database extends Model {
|
||
|
static get schema() {
|
||
|
// Return a flitter-orm schema here.
|
||
|
return {
|
||
|
Name: String,
|
||
|
NodeId: String,
|
||
|
PageId: String,
|
||
|
ColumnIds: [String],
|
||
|
UUID: { type: String, default: () => uuid() },
|
||
|
}
|
||
|
}
|
||
|
|
||
|
accessible_by(user, mode = 'view') {
|
||
|
return user.can(`database:${this.UUID}:${mode}`)
|
||
|
}
|
||
|
|
||
|
// Static and instance methods can go here
|
||
|
}
|
||
|
|
||
|
module.exports = exports = Database
|