initial + readme updates

This commit is contained in:
Arjun Patel
2018-06-25 19:21:14 -07:00
parent 9983a79efd
commit 4cbe20aed9
143 changed files with 22815 additions and 1 deletions
+12 -1
View File
@@ -1,2 +1,13 @@
# Simple-Bank-API
Please check docs for proper functionality explanation
Please read below for design explanation:
Local Database Configuration:
- schema : bank
- tables are outlined in PDF I sent to Thomas
- The users table is basically the mapper which has 3 sub tables:
- info : for customer details like address. This would obviously be extended to more columns in reality.
- account : This also maps to the user which has the main bank information like balance. Key thing to note is that a user may have multiple accounts so thats why this is separated.
- permissions: This is to allow functionality of the bonus of setting limits to withdrawals and deposits.