Initial commit; adaptation from mascarpone
This commit is contained in:
commit
3d45ec4b0a
36 changed files with 5877 additions and 0 deletions
6
migrations/users.db/01_create-users.sql
Normal file
6
migrations/users.db/01_create-users.sql
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
create table if not exists users (
|
||||
id integer primary key autoincrement,
|
||||
username not null unique,
|
||||
password not null,
|
||||
ephemeral boolean not null default false
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue