-
Notifications
You must be signed in to change notification settings - Fork 15
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
eb8e8c8
commit d09dd60
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 PhreaticObserved of the subject dataModel.Environment for a PostgreSQL database. Pending translation of enumerations and multityped attributes */ | ||
CREATE TYPE PhreaticObserved_type AS ENUM ('PhreaticObserved'); | ||
CREATE TABLE PhreaticObserved (address JSON, alternateName TEXT, areaServed TEXT, dataProvider TEXT, dateCreated TIMESTAMP, dateModified TIMESTAMP, dateObserved TIMESTAMP, dateObservedFrom TIMESTAMP, dateObservedTo TIMESTAMP, depth NUMERIC, description TEXT, investigationDepth NUMERIC, isMobile BOOLEAN, measurementType JSON, name TEXT, owner JSON, pollutionRate NUMERIC, pressure NUMERIC, refDevice JSON, residueLevel NUMERIC, source TEXT, type PhreaticObserved_type, waterTable NUMERIC); | ||
CREATE TABLE PhreaticObserved (address JSON, alternateName TEXT, areaServed TEXT, dataProvider TEXT, dateCreated TIMESTAMP, dateModified TIMESTAMP, dateObserved TIMESTAMP, dateObservedFrom TIMESTAMP, dateObservedTo TIMESTAMP, depth NUMERIC, description TEXT, id TEXT PRIMARY KEY, investigationDepth NUMERIC, isMobile BOOLEAN, location JSON, measurementType JSON, name TEXT, owner JSON, pollutionRate NUMERIC, pressure NUMERIC, refDevice JSON, residueLevel NUMERIC, seeAlso JSON, source TEXT, type PhreaticObserved_type, waterTable NUMERIC); |