parent
ed42a9a4f6
commit
57419c2e7e
@ -1 +1,19 @@
|
||||
...Make a bank.
|
||||
## knd-bank ##
|
||||
|
||||
Based on dnd_bank ( Bank of Skyfall, D&D Edition )
|
||||
https://git.skyfall.tech/ajohnson/dnd_bank
|
||||
|
||||
This project is solely for training purpose and will not be maintained. Use the Bank of Skyfall.
|
||||
|
||||
|
||||
|
||||
|
||||
Setup the database:
|
||||
CREATE TABLE account (id SERIAL UNIQUE, username VARCHAR(50) UNIQUE NOT NULL,timestamp TIMESTAMP);
|
||||
|
||||
CREATE TABLE balance (id SERIAL UNIQUE,balance NUMERIC);
|
||||
|
||||
Use script.
|
||||
|
||||
|
||||
Have a good day.
|
||||
|
Reference in new issue