minor secure fixes

This commit is contained in:
2020-05-27 13:15:06 +02:00
parent a21f94bb69
commit 782507ecf3
6 changed files with 8 additions and 10 deletions

View File

@@ -4,7 +4,7 @@ use bin_database;
create table users(
id int key not null auto_increment,
username varchar(30),
passwd varchar(30),
passwd varchar(200),
admin bool
);