Compare commits

...

2 Commits

Author SHA1 Message Date
46404a9d7b
Merge pull request 'fix syntax error in migration' (!18) from hotfix/fix-migration into master
All checks were successful
rvr-nextgen/pipeline/head This commit looks good
Reviewed-on: #18
2023-04-16 14:07:00 +02:00
8a4c5403cb
fix syntax error in migration
All checks were successful
rvr-nextgen/pipeline/pr-master This commit looks good
2023-04-16 14:05:14 +02:00

View File

@ -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` (