From 28b80ae909517f7e37283984f8e8fbaa6b6d59fe Mon Sep 17 00:00:00 2001 From: GaBaljaintheroom Date: Thu, 26 Sep 2024 15:44:22 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EA=B3=B5=EC=97=B0=20=EC=95=8C=EB=A6=BC?= =?UTF-8?q?=20=ED=85=8C=EC=9D=B4=EB=B8=94=20=EC=83=9D=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../common-domain/src/main/resources/schema.sql | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/app/domain/common-domain/src/main/resources/schema.sql b/app/domain/common-domain/src/main/resources/schema.sql index f4142650..b59f95c3 100644 --- a/app/domain/common-domain/src/main/resources/schema.sql +++ b/app/domain/common-domain/src/main/resources/schema.sql @@ -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) +);