About
Define a Model Schema
const gstore = require('gstore-node')();
const Schema = gstore.Schema;
const userSchema = new Schema({
name: {},
lastname: {},
password: {},
email: {},
votes: {},
dateOfBirth: {},
createdOn: {},
modifiedOn: {}
});Last updated
Was this helpful?