· 8 years ago · Jul 20, 2018, 03:52 PM
1drop table if exists entries;
2create table codes (
3 id integer primary key autoincrement,
4 title string not null,
5 text string not null
6);
7
8create table users (
9 id integer primary key, autoincrement,
10 username string not null,
11 password string not null
12);