diff --git a/testframework/data/PQSDKTestFrameworkDataSchema.sql b/testframework/data/PQSDKTestFrameworkDataSchema.sql index 989accc..5d98be3 100644 --- a/testframework/data/PQSDKTestFrameworkDataSchema.sql +++ b/testframework/data/PQSDKTestFrameworkDataSchema.sql @@ -1,3 +1,9 @@ +/* +NOTE: +1) While uploading to the data source, all decimal values should have a scale of 2. That is, the number of digits after the decimal point should be 2. +2) All timestamp values should be uploaded to the datasouce in MM/DD/YYYY HH24:MI:SS format. +*/ + CREATE TABLE NycTaxiGreen ( RecordID int, VendorID int, @@ -14,7 +20,7 @@ CREATE TABLE NycTaxiGreen ( mta_tax double, tip_amount double, tolls_amount double, - improvement_surcharge string, + improvement_surcharge double, total_amount double, payment_type int, trip_type int, @@ -26,4 +32,4 @@ CREATE TABLE TaxiZoneLookup ( Borough string, Zone string, service_zone string -); \ No newline at end of file +);