projects
/
zzz-floof.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Added *.egg to .gitignore.
[zzz-floof.git]
/
floof
/
websetup.py
diff --git
a/floof/websetup.py
b/floof/websetup.py
index
a812633
..
705c342
100644
(file)
--- a/
floof/websetup.py
+++ b/
floof/websetup.py
@@
-3,6
+3,7
@@
import logging
from floof.config.environment import load_environment
from floof.model import meta
from floof.config.environment import load_environment
from floof.model import meta
+import elixir
log = logging.getLogger(__name__)
log = logging.getLogger(__name__)
@@
-11,4
+12,4
@@
def setup_app(command, conf, vars):
load_environment(conf.global_conf, conf.local_conf)
# Create the tables if they don't already exist
load_environment(conf.global_conf, conf.local_conf)
# Create the tables if they don't already exist
-
meta.metadata.create_all(bind=meta.engin
e)
+
elixir.create_all(bind=meta.engine, checkfirst=Fals
e)