Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 1.17 KB

README.md

File metadata and controls

32 lines (22 loc) · 1.17 KB

Finance Stock Tracker

Greenkeeper badge dependencies Status devDependencies Status

Database

* postgresql

ERDs

Stock

Column Type Default Nullable
id SERIAL (primary key) None NO
ticker string None NO
name string None NO
last_price decimal None NO

UserStocks

Column Type Default Nullable
id SERIAL (primary key) None NO
user_id integer (foreign key) None NO
stock_id integer (foreign key) None NO

Authentication

* devise