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

12 lines
198 B

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