36 lines
624 B
JavaScript
36 lines
624 B
JavaScript
|
|
const { DataTypes } = require('sequelize');
|
|
const sequelize = require('../database/database.js');
|
|
|
|
const Image = sequelize.define('Image', {
|
|
image_id: {
|
|
type: DataTypes.INTEGER,
|
|
primaryKey: true,
|
|
autoIncrement: true,
|
|
},
|
|
image_path: {
|
|
type: DataTypes.STRING,
|
|
allowNull: false,
|
|
},
|
|
project_id: {
|
|
type: DataTypes.INTEGER,
|
|
allowNull: false,
|
|
},
|
|
width: {
|
|
type: DataTypes.FLOAT,
|
|
allowNull: true,
|
|
},
|
|
height: {
|
|
type: DataTypes.FLOAT,
|
|
allowNull: true,
|
|
},
|
|
|
|
}, {
|
|
tableName: 'image',
|
|
timestamps: false,
|
|
});
|
|
|
|
module.exports = Image;
|
|
|
|
|