-
Notifications
You must be signed in to change notification settings - Fork 0
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
7ef9d58
commit 755c521
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 ITTests of the subject dataModel.IT for a PostgreSQL database. Pending translation of enumerations and multityped attributes */ | ||
CREATE TYPE status_type AS ENUM ('OK','NOK','POK');CREATE TYPE ITTests_type AS ENUM ('ITTests'); | ||
CREATE TABLE ITTests (address JSON, alternateName TEXT, areaServed TEXT, component TEXT, dataProvider TEXT, dateCreated TIMESTAMP, dateModified TIMESTAMP, description TEXT, elapsedTime NUMERIC, name TEXT, owner JSON, source TEXT, status status_type, tests JSON, timestamp NUMERIC, type ITTests_type); | ||
CREATE TABLE ITTests (address JSON, alternateName TEXT, areaServed TEXT, component TEXT, dataProvider TEXT, dateCreated TIMESTAMP, dateModified TIMESTAMP, description TEXT, elapsedTime NUMERIC, id TEXT PRIMARY KEY, location JSON, name TEXT, owner JSON, seeAlso JSON, source TEXT, status status_type, tests JSON, timestamp NUMERIC, type ITTests_type); |