Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for tableware (3.82 sec)

  1. docs/em/docs/tutorial/sql-databases.md

    🗄 `Base` ⚪️➡️ `database` (📁 `database.py` ⚪️➡️ 🔛).
    
    ✍ 🎓 👈 😖 ⚪️➡️ ⚫️.
    
    👫 🎓 🇸🇲 🏷.
    
    ```Python hl_lines="4  7-8  18-19"
    {!../../../docs_src/sql_databases/sql_app/models.py!}
    ```
    
    `__tablename__` 🔢 💬 🇸🇲 📛 🏓 ⚙️ 💽 🔠 👫 🏷.
    
    ### ✍ 🏷 🔢/🏓
    
    🔜 ✍ 🌐 🏷 (🎓) 🔢.
    
    🔠 👫 🔢 🎨 🏓 🚮 🔗 💽 🏓.
    
    👥 ⚙️ `Column` ⚪️➡️ 🇸🇲 🔢 💲.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 25.2K bytes
    - Viewed (1)
  2. docs/en/docs/tutorial/sql-databases.md

    Create classes that inherit from it.
    
    These classes are the SQLAlchemy models.
    
    ```Python hl_lines="4  7-8  18-19"
    {!../../../docs_src/sql_databases/sql_app/models.py!}
    ```
    
    The `__tablename__` attribute tells SQLAlchemy the name of the table to use in the database for each of these models.
    
    ### Create model attributes/columns
    
    Now create all the model (class) attributes.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 29.6K bytes
    - Viewed (0)
Back to top