xclasscode commited on
Commit
bf223e4
·
1 Parent(s): e048902

Update models.py

Browse files
Files changed (1) hide show
  1. models.py +1 -2
models.py CHANGED
@@ -7,8 +7,7 @@ class SentimentResult(database.Base):
7
  __tablename__ = "sentiment_results"
8
 
9
  id = Column(Integer, primary_key=True, index=True)
10
- text = Column(String
11
  positive_score = Column(Float)
12
  negative_score = Column(Float)
13
- neutral_score = Column(Float)
14
  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)