-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support more datatypes in type generation (#5)
* implement support for more complex types * changelog * fix tests
- Loading branch information
Showing
9 changed files
with
258 additions
and
20 deletions.
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
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
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
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
CREATE MIGRATION m1x7evrp4v4ervukqqmdu4rjwiakf45iw2q7nazyumw77ceb24g6wq | ||
ONTO m1i6q7vybrrde2mfclrnfjrvvgsuxpkm4yptsr6suwqh2i6iii4zia | ||
{ | ||
CREATE TYPE default::TypesDump { | ||
CREATE PROPERTY date: std::datetime; | ||
CREATE PROPERTY dateDuration: cal::date_duration; | ||
CREATE PROPERTY duration: std::duration; | ||
CREATE PROPERTY json: std::json; | ||
CREATE PROPERTY localDate: cal::local_date; | ||
CREATE PROPERTY localDateTime: cal::local_datetime; | ||
CREATE PROPERTY localTime: cal::local_time; | ||
CREATE PROPERTY relativeDuration: cal::relative_duration; | ||
}; | ||
ALTER TYPE default::Person { | ||
CREATE LINK typesDump: default::TypesDump; | ||
}; | ||
}; |
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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