diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-12-29 11:15:55 -0600 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2012-01-29 16:33:44 -0600 |
commit | 70b44584ae4a81e53d39481781c63aec23b23884 (patch) | |
tree | 3057c7354c6c76c28845ab60588670fc536aa574 /mediagoblin/db/sql/migrations.py | |
parent | 8a9aa0758393336fb751c6f77a3d4feaa1903c06 (diff) | |
download | mediagoblin-70b44584ae4a81e53d39481781c63aec23b23884.tar.lz mediagoblin-70b44584ae4a81e53d39481781c63aec23b23884.tar.xz mediagoblin-70b44584ae4a81e53d39481781c63aec23b23884.zip |
Big ol' start of the SQL migrations system.
Things definitely don't work yet, but should be heading in the right direction.
Diffstat (limited to 'mediagoblin/db/sql/migrations.py')
-rw-r--r-- | mediagoblin/db/sql/migrations.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/mediagoblin/db/sql/migrations.py b/mediagoblin/db/sql/migrations.py new file mode 100644 index 00000000..67a02c96 --- /dev/null +++ b/mediagoblin/db/sql/migrations.py @@ -0,0 +1,17 @@ +# GNU MediaGoblin -- federated, autonomous media hosting +# Copyright (C) 2011 MediaGoblin contributors. See AUTHORS. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +MIGRATIONS = [] |