Skip to content

Commit

Permalink
Add test schema to expose failure
Browse files Browse the repository at this point in the history
  • Loading branch information
CarsonF committed Mar 11, 2024
1 parent cd1d76f commit 1798993
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions integration-tests/lts/dbschema/default.esdl
Expand Up @@ -212,4 +212,17 @@ module extra {

module User {
scalar type Status extending enum<"Active", "Disabled">;

type Profile {
property address -> User::Profile::MailingAddress;
}

module Profile {
type MailingAddress {
property street -> str;
property city -> str;
property state -> str;
property zip -> str;
}
}
}

0 comments on commit 1798993

Please sign in to comment.