Created
October 21, 2018 19:45
-
-
Save kwojcik-blockether/3f64695e241a80965d3745e765af676c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@startuml | |
title SpotifyEurope (Karol) | |
/' | |
' **************** | |
' *** Entities *** | |
' **************** | |
'/ | |
entity Playlist { | |
*id: Int(16) | |
-- | |
bar | |
} | |
entity User { | |
*id: Int(16) | |
-- | |
* foo | |
} | |
entity Artist { | |
*id: Int(16) | |
-- | |
} | |
entity Genre { | |
*id: Int(16) | |
-- | |
} | |
entity Track { | |
*id: Int(16) | |
-- | |
} | |
entity Country { | |
*id: Int(16) | |
-- | |
} | |
entity Album { | |
*id: Int(16) | |
-- | |
} | |
entity UserHistory { | |
*id: Int(16) | |
-- | |
} | |
entity Likes { | |
*id: Int(16) | |
-- | |
createdAt: Date() | |
updatedAt: Date() | |
like: Boolean | |
} | |
entity Followers { | |
*id: Int(16) | |
-- | |
createdAt: Date() | |
updatedAt: Date() | |
} | |
/' | |
' **************************************************************************************** | |
'/ | |
/' | |
' ***************** | |
' *** Relations *** | |
' ***************** | |
'/ | |
A -{ B | |
@enduml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment