-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c354f56
commit cd8fa65
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
/* (Beta) Export of data model PublicTransportStop of the subject dataModel.UrbanMobility for a PostgreSQL database. Pending translation of enumerations and multityped attributes */ | ||
CREATE TYPE PublicTransportStop_type AS ENUM ('PublicTransportStop');CREATE TYPE wheelChairAccessible_type AS ENUM ('0','1','2'); | ||
CREATE TABLE PublicTransportStop (address JSON, alternateName TEXT, areaServed TEXT, dataProvider TEXT, dateCreated TIMESTAMP, dateModified TIMESTAMP, description TEXT, name TEXT, openingHoursSpecification JSON, owner JSON, peopleCount NUMERIC, refPeopleCountDevice TEXT, refPublicTransportRoute JSON, shortStopCode TEXT, source TEXT, stopCode TEXT, transportationType JSON, type PublicTransportStop_type, wheelChairAccessible wheelChairAccessible_type); | ||
CREATE TABLE PublicTransportStop (address JSON, alternateName TEXT, areaServed TEXT, dataProvider TEXT, dateCreated TIMESTAMP, dateModified TIMESTAMP, description TEXT, id TEXT PRIMARY KEY, location JSON, name TEXT, openingHoursSpecification JSON, owner JSON, peopleCount NUMERIC, refPeopleCountDevice TEXT, refPublicTransportRoute JSON, seeAlso JSON, shortStopCode TEXT, source TEXT, stopCode TEXT, transportationType JSON, type PublicTransportStop_type, wheelChairAccessible wheelChairAccessible_type); |