xclasscode commited on
Commit
8e6d020
·
1 Parent(s): 9ed519c

Update models.py

Browse files
Files changed (1) hide show
  1. models.py +1 -1
models.py CHANGED
@@ -7,7 +7,7 @@ class SentimentResult(database.Base):
7
  __tablename__ = "sentiment_results"
8
 
9
  id = Column(Integer, primary_key=True, index=True)
10
- text_input = Column(String
11
  positive_score = Column(Float)
12
  negative_score = Column(Float)
13
  created_at = Column(DateTime, default=datetime.utcnow)
 
7
  __tablename__ = "sentiment_results"
8
 
9
  id = Column(Integer, primary_key=True, index=True)
10
+ text_input = Column(String)
11
  positive_score = Column(Float)
12
  negative_score = Column(Float)
13
  created_at = Column(DateTime, default=datetime.utcnow)