source: web/old/sipbmp3web/model/model.template @ f6f3e91

web
Last change on this file since f6f3e91 was f6f3e91, checked in by Jessica B. Hamrick <jhamrick@…>, 15 years ago

Preserve directory hierarchy (not sure what happened to it)

  • Property mode set to 100644
File size: 442 bytes
Line 
1from sqlalchemy import *
2from sqlalchemy.orm import mapper, relation
3from sqlalchemy import Table, ForeignKey, Column
4from sqlalchemy.types import Integer, Unicode
5#from sqlalchemy.orm import relation, backref
6
7from sipbmp3web.model import DeclarativeBase, metadata, DBSession
8
9class SampleModel(DeclarativeBase):
10    __tablename__ = 'sample_model'
11
12    id = Column(Integer, primary_key=True)
13    data = Column(Unicode(255), nullable=False)
14
Note: See TracBrowser for help on using the repository browser.