Advertisement
Guest User

data

a guest
Jul 12th, 2019
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.58 KB | None | 0 0
  1.     nameglow = Column(String(32), nullable=False)
  2.     namecolor = Column(String(32), nullable=False)
  3.     speed = Column(Integer, nullable=False, server_default=text("4"))
  4.     walls = Column(Integer, nullable=False)
  5.     bubblecolor = Column(String(32), nullable=False)
  6.     bubbletext = Column(String(32), nullable=False)
  7.     mood = Column(String(32), nullable=False)
  8.     bubbleglow = Column(String(32), nullable=False)
  9.     moodglow = Column(String(32), nullable=False)
  10.     moodcolor = Column(String(32), nullable=False)
  11.     size = Column(Integer, nullable=False, server_default=text("100"))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement