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