init rust db backend
This commit is contained in:
@@ -0,0 +1 @@
|
||||
DROP TABLE players;
|
||||
@@ -0,0 +1,9 @@
|
||||
CREATE TABLE players (
|
||||
id INTEGER PRIMARY KEY,
|
||||
name VARCHAR NOT NULL,
|
||||
debt INTEGER DEFAULT 0, -- debt to the group in copper pieces
|
||||
cp INTEGER DEFAULT 0,
|
||||
sp INTEGER DEFAULT 0,
|
||||
gp INTEGER DEFAULT 0,
|
||||
pp INTEGER DEFAULT 0
|
||||
);
|
||||
Reference in New Issue
Block a user