-
Notifications
You must be signed in to change notification settings - Fork 0
A mortgage refinance timeline for the web developed for Planet Money
License
sipple/Planet-Refi
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
DATABASE SCHEMA: USERS - userid - username - password PROFILES - profileid - userid - firstname - lastname - city - state - purchaseprice - purchasedate - mortgagebalance - housephoto - twittername TIMELINE - timelineid - profileid - userid - entrydate - title - description DATABASE CREATION SQL STATEMENTS: CREATE TABLE users ( userid INT NOT NULL AUTO_INCREMENT, username VARCHAR(20), password VARCHAR(100), PRIMARY KEY (userid) ); CREATE TABLE profiles ( profileid INT NOT NULL AUTO_INCREMENT, userid INT NOT NULL, firstname VARCHAR(25), lastname VARCHAR(25), city VARCHAR(100), state VARCHAR(2), purchaseprice FLOAT(10,2), purchasedate INT, mortgagebalance FLOAT(10,2), housephoto VARCHAR(255), twittername VARCHAR(50), FOREIGN KEY (userid) REFERENCES users (userid), PRIMARY KEY (profileid) ); CREATE TABLE timeine ( timelineid INT NOT NULL AUTO_INCREMENT, profileid INT NOT NULL, userid INT NOT NULL, entrydate INT NOT NULL, title VARCHAR(255), description TEXT, FOREIGN KEY (profileid) REFERENCES profile (profileid), FOREIGN KEY (userid) REFERENCES users (userid), PRIMARY KEY (timelineid) );
About
A mortgage refinance timeline for the web developed for Planet Money
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published