Files
internship_node/day13/models/product.js
T

16 lines
343 B
JavaScript
Raw Normal View History

2025-07-17 21:55:47 +01:00
module.exports = (sequelize, DataTypes) => {
const product = sequelize.define("product", {
id: {
type: DataTypes.INTEGER,
primaryKey: true,
autoIncrement: true,
},
title: DataTypes.STRING,
description: DataTypes.STRING,
price: DataTypes.INTEGER,
image: DataTypes.STRING,
});
return product;
};