Skip to content

Instantly share code, notes, and snippets.

View yoann217's full-sized avatar

Yoann Grosjean yoann217

  • Paris
View GitHub Profile
'use strict';
module.exports = (sequelize, DataTypes) => {
var User = sequelize.define('User', {
email: DataTypes.STRING,
password: DataTypes.STRING,
}, {
defaultScope: {
attributes: {exclude: ['password']},
},