/
astafievk
/
source_code
Обзор
Документация
Войти
/
astafievk
/
source_code
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Api/Models/Image.js
18 строк
368 B
astafievK
source code
21 июн 2024, 21:02
21 июн 2024, 21:02
37a1d03
Код
Авторство
О чём код?
const { DataTypes } = require('sequelize'); const sequelize = require('../database'); const Image = sequelize.define('image', { idImage: { type: DataTypes.INTEGER, allowNull: false, primaryKey: true, autoIncrement: true }, path: { type: DataTypes.STRING, allowNull: false }, }) module.exports = Image;