Skip to content

Commit

Permalink
feat/#294 : schma.sql수정
Browse files Browse the repository at this point in the history
  • Loading branch information
LJH098 committed Jun 8, 2024
1 parent 0858520 commit 6863065
Showing 1 changed file with 15 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,18 @@ CREATE TABLE `HISTORY_TB`
`MEMBER_FK` bigint(20) DEFAULT NULL,
PRIMARY KEY (`HISTORY_PK`),
FOREIGN KEY (`MEMBER_FK`) REFERENCES `MEMBER_TB` (`MEMBER_PK`)
) ENGINE=InnoDB;
) ENGINE=InnoDB;

CREATE TABLE `NOTIFY_TB`
(
`NOTIFY_PK` bigint(20) NOT NULL AUTO_INCREMENT,
`CREATED_DATE` datetime(6) NOT NULL,
`UPDATED_DATE` datetime(6) NOT NULL,
`NOTIFY_URL` varchar(255) NOT NULL,
`NOTIFY_IS_READ` bit(1) NOT NULL,
`NOTIFY_CONTENT` varchar(255) NOT NULL,
`NOTIFY_TYPE` varchar(255) NOT NULL,
`MEMBER_FK` bigint(20) DEFAULT NULL,
PRIMARY KEY (`NOTIFY_PK`),
FOREIGN KEY (`MEMBER_FK`) REFERENCES `MEMBER_TB` (`MEMBER_PK`)
) ENGINE=InnoDB;

0 comments on commit 6863065

Please sign in to comment.