-
Notifications
You must be signed in to change notification settings - Fork 0
/
models.js
63 lines (53 loc) · 1.25 KB
/
models.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
const Sequelize = require('sequelize');
let sequelize;
if (process.env.DATABASE_URL) {
sequelize = new Sequelize(process.env.DATABASE_URL, {
dialect: 'postgres',
define: {
underscored: true,
},
});
} else {
sequelize = new Sequelize({
database: 'benjamins_db',
dialect: 'postgres',
define: {
underscored: true,
},
});
}
const User = sequelize.define('user', {
username: Sequelize.STRING,
email: Sequelize.STRING,
pw_hash: Sequelize.STRING,
});
const Category = sequelize.define('category', {
name: Sequelize.STRING,
image_url: Sequelize.STRING,
});
const Product = sequelize.define('product', {
name: Sequelize.STRING,
description: Sequelize.STRING(1000),
image_url: Sequelize.STRING,
price: Sequelize.INTEGER,
});
const Transaction = sequelize.define('transaction', {
trans_id: Sequelize.STRING,
user_id: Sequelize.INTEGER,
product_id: Sequelize.INTEGER,
quantity: Sequelize.INTEGER,
price: Sequelize.INTEGER,
});
// JOIN TABLE
Product.belongsTo(User, { through: 'shopping_cart' });
User.hasMany(Category);
Category.belongsTo(User);
Category.hasMany(Product, { onDelete: 'cascade' });
Product.belongsTo(Category);
module.exports = {
sequelize,
User,
Category,
Product,
Transaction,
};