Releases: provpup/contact_list
Releases · provpup/contact_list
ActiveRecord version of contact list
Summary of design changes
The third version of the contact list communicates using ActiveRecord with a PostgreSQL database to store user contact information. Via the CLI, in addition to the features of the second version, we allow the user to:
- add/update/remove phone numbers
Manual ORM version of contact list app
Summary of design changes
The second version of the contact list communicates with a PostgreSQL database to store user contact information. Via the CLI, we allow the user to:
- create a new contact with first and last name, e-mail address
- show a particular user given an id
- list all user contact information
- search for contacts by first name, last name, or email
- remove a particular user given an id
- update a particular user given an id
- show a help message
CSV version of contact list app
Summary of design changes
The first version of the contact list uses a CSV file as a database to store user contact information. Via the CLI, we allow the user to:
- create a new contact with first and last name, e-mail address, and optional phone numbers
- show a particular user given an id
- list all user contact information
- search for contacts that contain a string
- show a help message