diff options
author | 2010-07-01 14:41:24 +0300 | |
---|---|---|
committer | 2010-07-01 23:50:28 +0300 | |
commit | 5102b71d333934ded46c6e0e0eb1386014926882 (patch) | |
tree | 29568b41ac27e2f20e961bebb642c207fad8f4ee /utils | |
parent | Fix some typos (diff) | |
download | gsoc2010-grumpy-5102b71d333934ded46c6e0e0eb1386014926882.tar.gz gsoc2010-grumpy-5102b71d333934ded46c6e0e0eb1386014926882.tar.bz2 gsoc2010-grumpy-5102b71d333934ded46c6e0e0eb1386014926882.zip |
Added Setting class/table to data model
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/grumpy_sync.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/grumpy_sync.py b/utils/grumpy_sync.py index ed506a1..7da95c8 100755 --- a/utils/grumpy_sync.py +++ b/utils/grumpy_sync.py @@ -18,7 +18,8 @@ path = os.path.join(os.path.dirname(__file__), os.path.pardir) sys.path.insert(0, path) del path -from grumpy.models import Base, Category, Developer, Ebuild, Herd, Package +from grumpy.models import (Base, Category, Developer, Ebuild, Herd, + Package, Setting) def main(path): engine = create_engine('postgresql://grumpy:grumpy@localhost/grumpy') |