aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/db/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* Collection changes and migration for federationJessica Tallon2015-10-071-1/+0
| | | | | | | - Adds a "type" column to the Collection object and allows the CollectionItem model to contain any object. - Changes "items" to "num_items" as per TODO - Renames "uploader", "creator" and "user" to a common "actor" in most places
* Removing legacy mongo-related docstringChristopher Allan Webber2014-06-231-33/+0
|
* RIP out mongoSebastian Spaeth2012-12-251-12/+0
| | | | | | | | | Since sqlalchemy is providing our database abstraction and we have moved away from Mongo as the underlying database, it is now time to simplify things and rip out mongo. This provides the bulk of the changes, and can stand on its own. There are some followup tasks that can be done, such as removing now unneeded abstraction layers, e.g. db.sql.fake.py
* It's 2012 all up in hereChristopher Allan Webber2012-02-021-1/+1
|
* Whitespace and formatting cleanup.Nathan Yergler2011-10-011-1/+1
| | | | | | | * Removed trailing whitespace * Line length < 80 where possible * Honor conventions on number of blank lines * Honor conventions about spaces around :, =
* 508. Updates copyright/license informationWill Kahn-Greene2011-09-011-1/+1
|
* Note from Chris Webber prefacing Elrond's DB abstraction idea.Christopher Allan Webber2011-07-021-0/+12
|
* Document the db submodule a bitElrond2011-06-301-0/+34
| | | | | Document the ideas behind the db submodule. And document what that actually means.
* Adding copyright headers and explaining why these unused imports are hereChristopher Allan Webber2011-05-181-0/+15
|
* Move models into new db/ directoryElrond2011-05-181-0/+0
The database is a central point of interest/discussion. Represent that by its own directory. This will surely become more interesting when we have migrations for example.