From 450b4ad63d093af92089884ecee3c4e5ef57891f Mon Sep 17 00:00:00 2001
From: Rob Hedgpeth
Date: Wed, 5 Feb 2020 18:12:14 -0600
Subject: [PATCH] Readme updates
---
Bookings/README.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Bookings/README.md b/Bookings/README.md
index 5eb482c..ab9571e 100644
--- a/Bookings/README.md
+++ b/Bookings/README.md
@@ -25,7 +25,7 @@ The following will walk you through the steps for getting this application up an
1. [Grab the code](#grab-code)
2. [Build the code](#build-code)
3. [Run the app](#run-app)
- 4. [Creating data](#create-data)
+ 4. [Adding app data](#create-data)
5. [Smart Transactions](#smart-transactions)
6. [Cross-Engine Queries](#cross-engine-queries)
7. [Support and Contribution](#support-contribution)
@@ -229,7 +229,7 @@ npm start
-### Adding data for the app
+### Adding app data
**Upcoming flight data**
@@ -256,7 +256,7 @@ INSERT INTO `flights` (`year`, `month`, `day`, `day_of_week`, `fl_date`, `carrie
INSERT INTO `tickets` (`id`, `fl_date`, `fl_num`, `carrier`, `origin`, `dest`, `price`) VALUES (2, '2020-02-06', 1170, 'DL', 'ORD', 'LAX', 276.00);
-INSERT INTO `trips` (`id`, `ticket_id`) VALUES (1, 4);
+INSERT INTO `trips` (`id`, `ticket_id`) VALUES (1, 2);
```
**Weather forecast data**