major features update
This commit is contained in:
parent
519fb49901
commit
4e2fab67c5
48 changed files with 3925 additions and 208 deletions
5
migrations/users.db/01_create-users.sql
Normal file
5
migrations/users.db/01_create-users.sql
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
create table if not exists users (
|
||||
id integer primary key autoincrement,
|
||||
username not null unique,
|
||||
password not null
|
||||
);
|
||||
5
migrations/users.db/02_add-ephemeral.sql
Normal file
5
migrations/users.db/02_add-ephemeral.sql
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
alter table users add column
|
||||
ephemeral boolean not null default false
|
||||
;
|
||||
|
||||
update users set ephemeral = false where ephemeral is null;
|
||||
Loading…
Add table
Add a link
Reference in a new issue