This commit is contained in:
2026-01-13 13:27:42 +03:00
parent 5e69454678
commit 4925283ede
27 changed files with 6236 additions and 260 deletions

View File

@@ -0,0 +1,11 @@
BEGIN TRANSACTION;
CREATE TABLE fractions(
id serial PRIMARY KEY,
name text,
owner_id int REFERENCES users(id),
money decimal(20, 0),
exp int DEFAULT 0,
level int DEFAULT 0
);
CREATE UNIQUE INDEX fractions_uindex ON fractions(id);
COMMIT TRANSACTION;