diff options
author | emkael <emkael@tlen.pl> | 2017-01-05 13:23:53 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2017-01-05 13:23:53 +0100 |
commit | 8d8e6af1783bf62ee6779f98fc30c3fd75ce955b (patch) | |
tree | 9357afbafe7d196f360dede0f4996f859675776d /ausbutler/model.py | |
parent | 8a6b5981795fc65c994d8e42c78f23a6c8d10498 (diff) |
Fetching translation strings and constants from tournament DB
Diffstat (limited to 'ausbutler/model.py')
-rw-r--r-- | ausbutler/model.py | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/ausbutler/model.py b/ausbutler/model.py index 6536b6a..fc088fa 100644 --- a/ausbutler/model.py +++ b/ausbutler/model.py @@ -1,7 +1,7 @@ from cached_property import cached_property from sqlalchemy import Column, MetaData, Table, func from sqlalchemy.ext.declarative import declarative_base -from sqlalchemy.types import Float, Integer +from sqlalchemy.types import Float, Integer, String from .db import get_session @@ -72,3 +72,13 @@ class Segment(Base): @cached_property def butler_count(self): return Segment.count_cache[(self.rnd, self.segment, self.tabl)] + +class Translation(Base): + __table__ = Table('logoh', MetaData(bind=session.bind), + Column('id', Integer, primary_key=True), + autoload=True) + +class Admin(Base): + __table__ = Table('admin', MetaData(bind=session.bind), + Column('shortname', String, primary_key=True), + autoload=True) |