aboutsummaryrefslogtreecommitdiffstats
path: root/schema.sql
blob: 3c3231f3fc34f97183eb6d03d85df898726c48a0 (plain)
1
2
3
4
5
6
drop table if exists users;
create table users (
    id integer primary key autoincrement,
    user string not null,
    password string not null
);