Fixed tablename

This commit is contained in:
Konsta Vesterinen
2013-10-30 14:51:51 +02:00
parent 4a5d3554ff
commit 24e624749d

View File

@@ -36,7 +36,7 @@ Example
class Document(Base):
__tablename__ = 'player'
__tablename__ = 'document'
id = sa.Column(sa.Integer, autoincrement=True)
name = sa.Column(sa.Unicode(50))
background_color = sa.Column(ColorType)