Skip to content

Instantly share code, notes, and snippets.

@stmtk1
Last active June 7, 2023 05:00
Show Gist options
  • Save stmtk1/645bd9013f73f62599e4ec0b8f2241b2 to your computer and use it in GitHub Desktop.
Save stmtk1/645bd9013f73f62599e4ec0b8f2241b2 to your computer and use it in GitHub Desktop.
classDiagram
  class session {
    +uuid id
    +uuid user_id
    +datetime expire
    +boolean valid
  }
  class user {
    +uuid id
    +boolean banned
  }
  class spot_search_history {
    +uuid id
    +uuid user_id
    +datetime created_at
  }
  class place {
    +uuid spot_search_history_id
    +uuid id
  }
  class route_search_history {
    +uuid id
    +uuid user_id
    +datetime created_at
    +string google_map_url
  }
Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment