Mv db.sql.base to db.base

This concludes the db.sql.* -> db.* move. Our db abstraction layer is
sqlalchemy, so there is no need to a separate db.sql.* hierarchy.

All tests have been run for each of the commit series to make sure
everything works at every step.
This commit is contained in:
Sebastian Spaeth
2013-01-07 13:03:51 +01:00
parent a5acfe23fa
commit 39dc3bf8db
13 changed files with 11 additions and 29 deletions

View File

@@ -15,7 +15,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from mediagoblin.db.sql.base import Base
from mediagoblin.db.base import Base
from sqlalchemy import (
Column, Integer, ForeignKey)

View File

@@ -15,7 +15,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from mediagoblin.db.sql.base import Base
from mediagoblin.db.base import Base
from sqlalchemy import (
Column, Integer, ForeignKey)

View File

@@ -15,7 +15,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from mediagoblin.db.sql.base import Base
from mediagoblin.db.base import Base
from sqlalchemy import (
Column, Integer, Float, ForeignKey)

View File

@@ -15,7 +15,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from mediagoblin.db.sql.base import Base
from mediagoblin.db.base import Base
from sqlalchemy import (
Column, Integer, SmallInteger, ForeignKey)