Files
vercel__next.js/examples/with-edgedb/dbschema/default.esdl
Colin McDonnell 842e4ec023 Add with-edgedb example (#35929)
## Documentation / Examples
 
- [X] Make sure the linting passes by running `yarn lint`
2022-04-27 16:49:17 +00:00

11 lines
289 B
Plaintext

module default {
type Post {
required property title -> str;
required property content -> str { default := '' };
required property authorName -> str { default := 'Unknown author' };
property published -> datetime;
property publishedISO := <str>.published;
}
}