From b39d3894ede4038175d44059766dc8556497229c Mon Sep 17 00:00:00 2001 From: Rick Hays Date: Wed, 25 Sep 2019 17:47:10 -0500 Subject: [PATCH] Update 'README.md' --- README.md | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cc50433..8745c83 100644 --- a/README.md +++ b/README.md @@ -15,4 +15,26 @@ application. closest pharmacy to the input latitude/longitude. 2. The API will return the closest pharmacy (with name and address) in a consumable response packet. 3. The API will include the distance (in miles) between the input latitude/longitude and the selected closest pharmacy -in the response packet. \ No newline at end of file +in the response packet. + + + +----- + + +Database is a SQLite + +Table Schema + +``` +create table pharmacies +( + Pharmacy TEXT not null, + Address TEXT, + City TEXT, + State TEXT, + Zip TEXT, + Latitude REAL not null, + Longitude REAL not null +); +```