Skip to content

Instantly share code, notes, and snippets.

@alesanabriav
Last active June 8, 2017 17:13
Show Gist options
  • Save alesanabriav/ac9c2fb156b6f53edf9de5697e5d0a8b to your computer and use it in GitHub Desktop.
Save alesanabriav/ac9c2fb156b6f53edf9de5697e5d0a8b to your computer and use it in GitHub Desktop.
sequelize model example
let Post = sequelize.define(
"Post",
{
title: { type: Sequelize.STRING },
author: { type: Sequelize.STRING },
body: { type: Sequelize.TEXT }
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment