Database Schemas
Tables
Database Schema Diagrams
Warning: Database Schemas are not for the faint of heart. Proceed with caution.
For more information, visit our FAQ
This is a work in progress, do not ask for updates.
Database Schema Diagrams
Users Schema 1
- id (int)
- name (str)
- email (str)
- password (str)
Users Schema 2
- id (int)
- name (str)
- email (str)
- password (str)
- admin (bool)
Posts Schema 1
- id (int)
- title (str)
- content (str)
- created_at (datetime)
Comments
- id (int)
- post_id (int)
- author_id (int)
- content (str)
- created_at (datetime)
FAQ
- Q: What is the purpose of this database?
- R: To serve you, the user.
- Q: What is the best way to use this database?
- R: With a healthy dose of skepticism.