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 45fb70a commit 06d8edf
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions integration-tests/lts/dbschema/default.esdl
Expand Up @@ -220,4 +220,17 @@ module User {
scalar type Status extending enum<"Active", "Disabled">;

type User extending default::User;

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 06d8edf

Please sign in to comment.