diff pylons_app/model/meta.py @ 0:564e40829f80

initial commit.
author Marcin Kuzminski
date Thu, 18 Feb 2010 13:01:57 +0100
parents
children 7afbc45aab28
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pylons_app/model/meta.py	Thu Feb 18 13:01:57 2010 +0100
@@ -0,0 +1,15 @@
+"""SQLAlchemy Metadata and Session object"""
+from sqlalchemy.ext.declarative import declarative_base
+from sqlalchemy.orm import scoped_session, sessionmaker
+
+__all__ = ['Base', 'Session']
+#
+# SQLAlchemy session manager. Updated by model.init_model()
+#
+Session = scoped_session(sessionmaker())
+#
+
+# The declarative Base
+Base = declarative_base()
+#For another db...
+#Base2 = declarative_base()