Back

Database

Integration Diagram

%% AUTOGENERATED CODE -- DO NOT EDIT!

graph TD
    Cache
    MegaDatabase
 IdentityServer["IdentityServer"] --> MegaDatabase["MegaDatabase"]

Database Index

Database Application Name Source Location
MegaDatabase /github.com/anz-bank/sysl-examples/demos/sizzle_restaurant/sizzle.sysl@master

Application Index

Application Name Method Source Location
Cache ... /github.com/anz-bank/sysl-examples/demos/sizzle_restaurant/sizzle.sysl@master
MegaDatabase InsertCustomer /github.com/anz-bank/sysl-examples/demos/sizzle_restaurant/sizzle.sysl@master
MegaDatabase SelectCustomer /github.com/anz-bank/sysl-examples/demos/sizzle_restaurant/sizzle.sysl@master

Type Index

No Types Defined

Databases

Database MegaDatabase
%% AUTOGENERATED CODE -- DO NOT EDIT!

classDiagram
 class __orders {
  int status
  int id
  MegaDatabase_reviews review
  datetime updated_at
  int total_price
  MegaDatabase_customers customer_id
  datetime created_at
 }
 class __orders_products {
  MegaDatabase_orders order_id
  int quantity
  MegaDatabase_products product_id
  string comments
 }
 class __payment_details {
  int type
  MegaDatabase_cards payment_card
  datetime paid_at
  int id
  MegaDatabase_orders order_id
 }
 class __cards {
  string expiry
  int id
  string card_number
 }
 class __customers {
  string phone
  string password
  datetime signup_at
  string last_name
  string email
  string first_name
  datetime last_login_at
  int id
 }
 class __reviews {
  int id
  int score
  datetime created_at
  string comment
 }
 class __products {
  int price
  int id
  string name
  string image
  string details
 }
 __orders <-- MegaDatabase_reviews
 __orders <-- MegaDatabase_customers
 __orders_products <-- MegaDatabase_orders
 __orders_products <-- MegaDatabase_products
 __payment_details <-- MegaDatabase_cards
 __payment_details <-- MegaDatabase_orders

Applications

Application Cache

Cache ...

Sequence Diagram
%% AUTOGENERATED CODE -- DO NOT EDIT!

sequenceDiagram
 ... ->> Cache: ...

Request types

No Request types

Response types

No Response Types