From 06d7aa05715268ced14e5c7ed848a97ceff4f201 Mon Sep 17 00:00:00 2001 From: Alberto Abella Date: Wed, 17 May 2023 15:57:43 +0200 Subject: [PATCH] test of SQL export --- OffStreetParking/schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OffStreetParking/schema.sql b/OffStreetParking/schema.sql index eb1cf4b..04c5144 100644 --- a/OffStreetParking/schema.sql +++ b/OffStreetParking/schema.sql @@ -1,3 +1,3 @@ /* (Beta) Export of data model OffStreetParking of the subject dataModel.Parking for a postgreSQL database. Pending translation of enumerations and multityped attributes */ CREATE TYPE OffStreetParking_type AS ENUM ('OffStreetParking'); -CREATE TABLE OffStreetParking (acceptedPaymentMethod json, accessModified text, address json, aggregateRating json, allowedVehicleType json, alternateName text, areaServed text, availableSpotNumber integer, averageSpotLength text, averageSpotWidth text, category json, chargeType json, contactPoint json, dataProvider text, dateCreated timestamp, dateModified timestamp, description text, extCategory json, extraSpotNumber integer, facilities json, firstAvailableFloor integer, fourWheelerSlots json, highestFloor integer, id text, images json, layout json, location json, lowestFloor integer, maximumAllowedHeight text, maximumAllowedWidth text, maximumParkingDuration text, measuresPeriod text, measuresPeriodUnit text, municipalityInfo json, name text, observationDateTime timestamp, occupancy text, occupancyDetectionType json, occupancyModified timestamp, occupiedSpotNumber integer, openingHours text, outOfServiceSlotNumber text, owner json, parkingMode json, parkingSiteId text, priceCurrency text, priceRatePerMinute text, provider json, refParkingAccess text, refParkingGroup text, refParkingSpot text, requiredPermit json, reservationType json, security json, seeAlso json, source text, specialLocation json, status json, totalSpotNumber integer, twoWheelerSlots json, type OffStreetParking_type, unclassifiedSlots json, usageScenario json, vehicleEntranceCount text, vehicleExitCount text); \ No newline at end of file +CREATE TABLE OffStreetParking (acceptedPaymentMethod json, accessModified text, address json, aggregateRating json, allowedVehicleType json, alternateName text, areaServed text, availableSpotNumber text, averageSpotLength text, averageSpotWidth text, category json, chargeType json, contactPoint json, dataProvider text, dateCreated timestamp, dateModified timestamp, description text, extCategory json, extraSpotNumber text, facilities json, firstAvailableFloor text, fourWheelerSlots json, highestFloor text, id text, images json, layout json, location json, lowestFloor text, maximumAllowedHeight text, maximumAllowedWidth text, maximumParkingDuration text, measuresPeriod text, measuresPeriodUnit text, municipalityInfo json, name text, observationDateTime timestamp, occupancy text, occupancyDetectionType json, occupancyModified timestamp, occupiedSpotNumber text, openingHours text, outOfServiceSlotNumber text, owner json, parkingMode json, parkingSiteId text, priceCurrency text, priceRatePerMinute text, provider json, refParkingAccess text, refParkingGroup text, refParkingSpot text, requiredPermit json, reservationType json, security json, seeAlso json, source text, specialLocation json, status json, totalSpotNumber text, twoWheelerSlots json, type OffStreetParking_type, unclassifiedSlots json, usageScenario json, vehicleEntranceCount text, vehicleExitCount text); \ No newline at end of file