Capable Markdown

View as Markdown

#Markdown from editor

Introduction

This document provides a comprehensive overview of the database schema for [Project Name/Database Name]. It aims to detail the structure, relationships, and key considerations of the database to facilitate understanding and collaboration among developers, database administrators, and stakeholders.

Project {
  Note: "Your DBML ER diagram here."
}

Table users as U {
  id int [pk]
  username varchar
  email varchar
  created_at timestamp
}

Table orders as O {
  id int [pk]
  user_id int [ref: > U.id]
  order_date date
  status varchar
}

#Markdown from reference

Space template

This is a test of a template reference.

graph TD
A[Work] -->|Get money| B(Go shopping)
B --> C{Let me think}
C -->|One| D[Sandwich]
C -->|Two| E[Wrap]
C -->|Three| F[Baguette]

alt

#Markdown from URL