Instalation user table fix

This commit is contained in:
JonatanRek 2019-10-13 14:10:33 +02:00
parent c8ae3cede3
commit daa0759544
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ CREATE TABLE `users` (
`username` varchar(255) NOT NULL,
`password` varchar(255) NOT NULL,
`startPage` int(11) NOT NULL,
`at_home` varchar(255) NOT NULL
`at_home` varchar(255) NOT NULL DEFAULT 'false'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;