From 24e624749de22c30d0d537646b440289c7e2d113 Mon Sep 17 00:00:00 2001 From: Konsta Vesterinen Date: Wed, 30 Oct 2013 14:51:51 +0200 Subject: [PATCH] Fixed tablename --- docs/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.rst b/docs/index.rst index cf4dc8d..3306dcc 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -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)