We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6de9bd3 commit 87c0e45Copy full SHA for 87c0e45
src/templates/schema.sql
@@ -2,10 +2,10 @@ CREATE TABLE IF NOT EXISTS `users` (
2
`id` INTEGER(4) NOT NULL PRIMARY KEY AUTO_INCREMENT,
3
`username` VARCHAR(255) NOT NULL,
4
`password` VARCHAR(255) NOT NULL
5
-);
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
6
7
CREATE TABLE IF NOT EXISTS `tasks` (
8
9
`title` VARCHAR(255) NOT NULL,
10
`done` TINYINT(1) NOT NULL DEFAULT 0
11
0 commit comments