BootstrapSQLiteBlog/db/mysql/create_users_table.sql

8 lines
299 B
SQL

CREATE table if not exists users (
id integer primary key auto_increment,
username text not null,
hash text not null,
can_post integer not null default 0,
is_admin integer not null default 0,
created timestamp not null default current_timestamp)