Skip to content

Commit

Permalink
test of SQL export
Browse files Browse the repository at this point in the history
  • Loading branch information
albertoabellagarcia committed Oct 26, 2023
1 parent c354f56 commit cd8fa65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PublicTransportStop/schema.sql
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);

0 comments on commit cd8fa65

Please sign in to comment.