Spaces:
Running
Running
File size: 333 Bytes
18d6976 | 1 2 3 4 5 6 7 8 9 10 11 | from sqlalchemy import Column, Integer, String
from sqlalchemy.ext.declarative import declarative_base
Base = declarative_base()
class Task(Base):
__tablename__ = "tasks"
id = Column(Integer, primary_key=True, index=True)
title = Column(String, index=True)
description = Column(String)
username = Column(String) |