add code documentation
This commit is contained in:
parent
4479bd2429
commit
bc842244c7
7 changed files with 261 additions and 31 deletions
|
|
@ -1,3 +1,5 @@
|
|||
"""This script containing the table definitions for the database."""
|
||||
|
||||
from DbSetup import Base
|
||||
from sqlalchemy import Column, Date, Integer, Float, String
|
||||
|
||||
|
|
@ -14,8 +16,6 @@ class Toots(Base):
|
|||
userName = Column(String(255))
|
||||
userId = Column(String(255))
|
||||
|
||||
|
||||
|
||||
class SentimentCounts(Base):
|
||||
__tablename__ = 'SentimentCounts'
|
||||
__table_args__ = {'extend_existing': True}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue