Skip to content

Instantly share code, notes, and snippets.

@swlkr
Last active July 15, 2018 23:48
Show Gist options
  • Save swlkr/9bb521cafa2068f2da01977f942db633 to your computer and use it in GitHub Desktop.
Save swlkr/9bb521cafa2068f2da01977f942db633 to your computer and use it in GitHub Desktop.
Coast Schema
[{:db/ident :author/email
:db/type "text"}
{:db/ident :author/name
:db/type "text"}
{:db/rel :author/posts
:db/type :many
:db/joins :post/author}
{:db/ident :post/slug
:db/type "text"}
{:db/col :post/title
:db/type "text"
:db/nil? false}
{:db/col :post/body
:db/type "text"
:db/nil? false}
{:db/col :post/published-at
:db/type "timestamptz"}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment