'use strict';

const Model = require('./model');

class Checklogs extends Model {

    constructor() {
        super('checklogs');
    }

    insertLog(id, text) {
         this.insert({
            "_id": id,
            "text": text
        });
    }
}

module.exports = Checklogs;