Set default total allowance to 10
All checks were successful
Backend Build and Test / build (push) Successful in 2m9s

This commit is contained in:
2025-05-25 14:53:31 +02:00
parent f9fb956efd
commit a08d194cde
3 changed files with 36 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 0.0,
weight real not null default 10.0,
balance integer not null default 0
) strict;