Merge branch 'master' into derek-moore-bug405_email_notifications_for_comments
[mediagoblin.git] / mediagoblin / gmg_commands / mongosql.py
CommitLineData
98913512
E
1# GNU MediaGoblin -- federated, autonomous media hosting
2# Copyright (C) 2012 MediaGoblin contributors. See AUTHORS.
3#
4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU Affero General Public License as published by
6# the Free Software Foundation, either version 3 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU Affero General Public License for more details.
13#
14# You should have received a copy of the GNU Affero General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16
98913512
E
17
18def mongosql_parser_setup(subparser):
19 pass
20
21
22def mongosql(args):
9e554311
CAW
23 # First, make sure our mongo migrations are up to date...
24 from mediagoblin.gmg_commands.migrate import run_migrate
25 run_migrate(args.conf_file)
26
431811eb 27 from mediagoblin.db.sql.convert import run_conversion
98913512 28 run_conversion(args.conf_file)