You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* (Beta) Export of data model Road of the subject dataModel.Transportation for a PostgreSQL database. Pending translation of enumerations and multityped attributes */
CREATE TYPE roadClass_type AS ENUM ('motorway','primary','residential','secondary','service','tertiary','trunk','unclassified');CREATE TYPE Road_type AS ENUM ('Road');
CREATE TABLE Road (address JSON, alternateName TEXT, annotations JSON, areaServed TEXT, color TEXT, dataProvider TEXT, dateCreated TIMESTAMP, dateModified TIMESTAMP, description TEXT, id TEXT PRIMARY KEY, image TEXT, length NUMERIC, location JSON, name TEXT, owner JSON, refRoadSegment JSON, responsible TEXT, roadClass roadClass_type, seeAlso JSON, source TEXT, type Road_type);