Skip to content

Commit

Permalink
fix: 공연 알림 테이블 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
GaBaljaintheroom committed Sep 26, 2024
1 parent 618ec89 commit 28b80ae
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions app/domain/common-domain/src/main/resources/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -259,3 +259,16 @@ create table alarm.ticketing_alert
user_fcm_token varchar(255) not null,
primary key (id)
);

create table alarm.show_alarm
(
is_deleted boolean not null,
created_at timestamp(3) not null,
updated_at timestamp(3) not null,
id uuid not null,
user_fcm_token varchar(255) not null,
title varchar(255) not null,
content varchar(255) not null,
checked boolean not null,
primary key (id)
);

0 comments on commit 28b80ae

Please sign in to comment.