8 lines
223 B
Python
8 lines
223 B
Python
from sqlalchemy import Column, Integer, String
|
|
from database import Base
|
|
|
|
class Note(Base):
|
|
__tablename__ = "notes"
|
|
|
|
id = Column(Integer, primary_key=True, index=True)
|
|
content = Column(String, index=True) |