migrations/init.sql (view raw)
1create table if not exists login ( 2 user_id INTEGER PRIMARY KEY AUTOINCREMENT, 3 username text unique not null, 4 password text not null, 5 email text 6);