Skip to content

Commit

Permalink
sails generate model Post title:string body:text
Browse files Browse the repository at this point in the history
  • Loading branch information
rmg committed Apr 20, 2017
1 parent a78549e commit b5b7416
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions sails-blog/api/models/Post.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/**
* Post.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: {

title : { type: 'string' },

body : { type: 'text' }
}
};

0 comments on commit b5b7416

Please sign in to comment.