Files
kontor/kontor-piccolo/home/tables.py
T
Thomas Peetz 37e094e390
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 3s
add kontor-blacksheep and kontor-piccolo as blueprints for new app
2026-06-03 15:59:59 +02:00

12 lines
197 B
Python

from piccolo.table import Table
from piccolo.columns import Varchar, Boolean
class Task(Table):
"""
An example table.
"""
name = Varchar()
completed = Boolean(default=False)