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) +);