diff --git a/integration-tests/lts/dbschema/default.esdl b/integration-tests/lts/dbschema/default.esdl index 31f4046c4..282db6764 100644 --- a/integration-tests/lts/dbschema/default.esdl +++ b/integration-tests/lts/dbschema/default.esdl @@ -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; + } + } }