fix syntax error in migration

This commit is contained in:
Bence Pőcze 2023-04-16 14:05:14 +02:00
parent 15a58e8ace
commit 8a4c5403cb
Signed by: bence
GPG Key ID: DC5BD6E95A333E6D

@ -3,7 +3,7 @@ CREATE TABLE `communities` (
`name` varchar(255) NOT NULL,
`currency` varchar(3) NOT NULL,
`created` timestamp NOT NULL DEFAULT current_timestamp(),
PRIMARY KEY (`id`),
PRIMARY KEY (`id`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4;
CREATE TABLE `community_members` (