all repos — myprecious @ 4f12dee46f1c595f99cb80b659909d4ce88d7dd5

A lightweight web service to backup precious game saves.

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);