Add complete allowance endpoint

This commit is contained in:
2025-05-18 08:45:05 +02:00
parent 2620d6ee47
commit 5d803bb01c
4 changed files with 107 additions and 1 deletions

View File

@@ -2,7 +2,7 @@ create table users
(
id integer primary key,
name text not null,
weight real not null default 1.0,
weight real not null default 0.0,
balance integer not null default 0
) strict;