디비 구상(2)
이전 글에 이어서 데이터베이스를 설명하겠다. // comments.js 'use strict'; module.exports = (sequelize, DataTypes) => { const comments = sequelize.define('comments', { commentNum: { type: DataTypes.INTEGER, autoIncrement: true, allowNull: false, primaryKey: true }, postType: { type: DataTypes.INTEGER, allowNull: false }, postNum: { type: DataTypes.INTEGER, allowNull: false }, content: { type: DataTypes.TEXT, allowNu..
2020. 12. 29.