1 drop table if exists users;
3 id int unique auto_increment,
4 name varchar(200) binary not null default "",
5 username varchar(200) binary not null default "",
6 password varchar(255) binary not null default "",
7 role varchar(200) binary not null default "",
8 last_active int(11) not null default 0,
9 last_login int(11) not null default 0
15 password="$2y$10$84xUpPFQFRYRwpGkt01YtObJZcRKGReM/5ywHXCbwDF2bja41CDZm",