8cfcd5a0211e4bdee3ed6db4ae4b88a241603173
1 from sqlalchemy
import Column
, ForeignKey
2 from sqlalchemy
.orm
import relation
3 from sqlalchemy
.types
import Integer
, Unicode
5 from floof
.model
import meta
9 class Art(meta
.TableBase
):
11 id = Column(Integer
, primary_key
=True)
12 title
= Column(Unicode(length
=120), nullable
=False)