fix script SQL

This commit is contained in:
Guillermo Roche 2020-05-20 00:11:17 +02:00
parent 0b1bb18f83
commit b8831c9e35

View File

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