Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Avatar for KuCalc : devops.
Download
50676 views
1
var resourceful = require('resourceful');
2
3
var Creature = module.exports = resourceful.define('creature', function () {
4
this.string('diet');
5
this.bool('vertebrate');
6
this.array('belly');
7
8
this.timestamps();
9
});
10
11
Creature.prototype.feed = function (food) {
12
this.belly.push(food);
13
};
14
15