summaryrefslogtreecommitdiff
path: root/sql/sqlite3.sql
blob: 9aaa818d58023f78717b3170474bbd67b2105ebc (plain)
1
2
3
4
5
6
7
8
9
drop table if exists users;

create table users(
	id integer primary key autoincrement not null,
	username varchar(32) unique not null,
	password varchar(32) not null
);

insert into users(username, password) values('admin','admin');