Skip to content

Commit

Permalink
Merge pull request #9 from SouJunior/develop
Browse files Browse the repository at this point in the history
fixup
  • Loading branch information
wouerner authored Oct 23, 2024
2 parents f5b490b + 087efa3 commit 36dc6b7
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 36dc6b7

Please sign in to comment.