Skip to content

Instantly share code, notes, and snippets.

@weapp
Last active October 11, 2015 11:56
Show Gist options
  • Save weapp/a9adc23637b4fe5664e3 to your computer and use it in GitHub Desktop.
Save weapp/a9adc23637b4fe5664e3 to your computer and use it in GitHub Desktop.
{ title: "My ER Diagram" }
# Tables
[User] { color: :blue }
*id
blog_id* <nullable>
name
[Blog] { color: :orange }
*id
user_id*
title
logo <url>
[Post]
*id
blog_id*
title
body
# Relations
[User] 1--? [Blog]
[Blog] 1--* [Post]
[Post] +--* [Tag]
[Post] 1--* [Comment]
[User] 1--* [Comment]
[User] *--* [User] <friendship>
# Extras
[Post] == [Comment]
{ node.fontsize: 10 }
{ global.pad: 0.2 }
{ global.resolution: 75 }
{ global.ranksep: 0.8 }
{ global.nodesep: 0.3 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment