You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SED-Stack/models/users.js

15 lines
228 B

var Sequelize = require('sequelize');
var db = require('./db.js');
var Users = db.define('user', {
username: {
type: Sequelize.STRING,
unique: true
},
password: Sequelize.STRING
});
db.sync();
module.exports = Users;