Skip to content
Snippets Groups Projects
Commit 529200fa authored by Martin Stähr's avatar Martin Stähr
Browse files

feat: adding chatRoomId for groupChats for later use

parent 840bcad3
No related branches found
No related tags found
No related merge requests found
......@@ -13,8 +13,9 @@ CREATE TABLE if not exists `projects` (
CREATE TABLE if not exists `groups` (
`id` int NOT NULL AUTO_INCREMENT,
`projectId` varchar(400) NOT NULL,
`id` int NOT NULL AUTO_INCREMENT,
`projectId` varchar(400) NOT NULL,
`chatRoomId` varchar(400) NOT NULL,
PRIMARY KEY (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment