Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
wouerner committed Oct 23, 2024
1 parent d7a6063 commit 087efa3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Item(Base):
id = Column(Integer, primary_key=True)
title = Column(String(255), index=True)

description = Column(Text(300), index=True)
description = Column(String(300), index=True)

owner_id = Column(Integer, ForeignKey("users.id"))

Expand All @@ -42,7 +42,7 @@ class Volunteer(Base):

id = Column(Integer, primary_key=True)
name = Column(String(45), index=True)
linkedin = Column(String(3072), index=True)
linkedin = Column(String(3000), index=True)
email = Column(String(255), index=True)
is_active = Column(Boolean, default=True)
jobtitle_id = Column(Integer, ForeignKey("jobtitle.id"))
Expand Down

0 comments on commit 087efa3

Please sign in to comment.