Creating Database Tables
Tables are the foundation of your backend. Each table represents a collection of data. Example tables: Users Products Orders MessagesHow to Create a Table
- Open your project dashboard
- Click Create Table
- Enter table name
- Add fields
- id (Primary Key)
- name (Text)
- email (Text)
- password (Text)
- created_at (Datetime)
Best Practices
- Use clear table names
- Keep fields simple
- Avoid unnecessary columns
- Plan relationships early

