· 8 years ago · Jan 08, 2018, 09:18 AM
1==> schema.sql <==
2create table if not exists users (
3 id integer primary key autoincrement,
4 uuid text UNIQUE NOT NULL,
5 salt text UNIQUE NOT NULL,
6 username text UNIQUE not null,
7 email text not null,
8 age integer not null,
9 password text not null
10);