From 57419c2e7ee7367f6bb113c68c6a7553b0a5617d Mon Sep 17 00:00:00 2001 From: Matt Theissen Date: Sun, 18 Jul 2021 01:13:34 -0500 Subject: [PATCH] README.md update. --- README.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 47018a4..891a258 100644 --- a/README.md +++ b/README.md @@ -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.