FOGProject/fog-too

View on GitHub
api/models/Setting.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Setting.js
 *
 * @description :: TODO: You might write a short summary of how this model works and what it represents here.
 * @docs        :: http://sailsjs.org/documentation/concepts/models-and-orm/models
 */

module.exports = {
  attributes: {
    name: {
      type: 'string',
      required: true,
      unique: true
    },
    value: {
      type: 'json',
      required: true,
    }
  }
};