removed collocate from template

This commit is contained in:
jonasled 2021-02-26 22:49:00 +01:00
parent 08e6c1810e
commit 8df0dee536

View file

@ -3,7 +3,7 @@ CREATE TABLE `posts` (
`title` text,
`content` text,
`date` timestamp NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
ALTER TABLE `posts`
ADD PRIMARY KEY (`id`);