Skip to content

Commit

Permalink
implement functionality to schedule-base notifying group about week e…
Browse files Browse the repository at this point in the history
…vents #10
  • Loading branch information
jonua committed Feb 5, 2024
1 parent 697e1d9 commit 0776bee
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
create table calendar_notification_configuration
(
id bigserial primary key,
uuid varchar(36) not null unique,
create_date timestamp not null default now(),
update_date timestamp,
active boolean not null default false,
calendar_id int8 references calendar (id) not null,
tg_source_id int8 references tg_source (id) not null
);

0 comments on commit 0776bee

Please sign in to comment.