Skip to content

Commit b7a2468

Browse files
Room Numbers Are Strings
1 parent c0069d5 commit b7a2468

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conditional/models/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class FreshmanAccount(db.Model):
1313
name = Column(String(64), nullable=False)
1414
eval_date = Column(Date, nullable=False)
1515
onfloor_status = Column(Boolean)
16-
room_number = Column(Integer)
16+
room_number = Column(String)
1717

1818
def __init__(self, name, onfloor, room=None):
1919
self.name = name

0 commit comments

Comments
 (0)