정리
This commit is contained in:
@@ -55,6 +55,13 @@ const EventParticipant = sequelize.define('EventParticipant', {
|
||||
}, {
|
||||
tableName: 'EventParticipants',
|
||||
comment: '이벤트별 참가자 정보를 저장하는 테이블',
|
||||
indexes: [
|
||||
{
|
||||
unique: true,
|
||||
fields: ['eventId', 'memberId'],
|
||||
name: 'unique_event_member'
|
||||
}
|
||||
],
|
||||
timestamps: true
|
||||
});
|
||||
|
||||
|
||||
@@ -27,8 +27,8 @@ const syncModels = async () => {
|
||||
// await sequelize.query('SET FOREIGN_KEY_CHECKS = 1');
|
||||
|
||||
// 운영 alter: true - 구조변경만 alter처리
|
||||
await sequelize.sync({ alter: true });
|
||||
// await sequelize.sync();
|
||||
// await sequelize.sync({ alter: true });
|
||||
await sequelize.sync();
|
||||
} catch (error) {
|
||||
console.error('모델 동기화 중 오류 발생:', error);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user