all repos — myprecious @ 5acbe103e332613faff043d102cc215dc13380d2

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