Files
Joonas Bergius 69d7aac36a Add models for each table in the database, plus User. Relates to #446
Basically, I went ahead and reconstructed each table in the database as
a mapping class. In addition, I recreated the User class that subclassed
Participant class previously.

There is still clean up that needs to be done here.

Signed-off-by: Joonas Bergius <joonas.bergius@gmail.com>
2013-01-17 13:58:15 -06:00

10 lines
412 B
Python

from gittip.models.absorption import Absorption
from gittip.models.elsewhere import Elsewhere
from gittip.models.exchange import Exchange
from gittip.models.participant import Participant
from gittip.models.payday import Payday
from gittip.models.tip import Tip
from gittip.models.transfer import Transfer
from gittip.models.user import User
all = [Elsewhere, Exchange, Participant, Payday, Tip, Transfer, User]