MoonKimTeam / backend-alarm

0 stars 0 forks source link

알람 테이블 설계 및 요구사항 정의 #1

Open MALLLAG opened 7 months ago

DonggeonMoon commented 7 months ago

구현 기능

이메일 알림

테이블 설계

erDiagram
    ALARM {
        id BIGINT PK "알람 id, AUTO_INCREMENT, PRIMARY KEY"
        reservation_id BIGINT "예약 id, NOT NULL"
        template_id BIGINT "메일 템플릿 id"
        email VARCHAR(255) "이메일, NOT NULL"
        sended_at DATETIME "발송시각, NOT NULL"
    }
erDiagram
    MAIL_TEMPLATE {
        id BIGINT PK "메일 템플릿 id, AUTO_INCREMENT, PRIMARY KEY"
        title VARCHAR(255) "제목, NOT NULL"
        text TEXT "본문, NOT NULL"
    }