From c562bbce8bab5a38ddb1d253b8083330c3265a96 Mon Sep 17 00:00:00 2001 From: sanj Date: Sun, 29 Aug 2010 22:41:44 +0530 Subject: [PATCH] changed fabfile to not attempt to syncdb / migrate. i will do these manually. --- fabfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fabfile.py b/fabfile.py index 54e5d60..53671aa 100644 --- a/fabfile.py +++ b/fabfile.py @@ -43,5 +43,5 @@ def setup(): def deploy(): bzr_push() bzr_update() - virtual_run('python %(project_root)s/%(project_name)s/manage.py syncdb;python %(project_root)s/%(project_name)s/manage.py migrate'%env) +# virtual_run('python %(project_root)s/%(project_name)s/manage.py syncdb;python %(project_root)s/%(project_name)s/manage.py migrate'%env) run('touch %(project_root)s/wsgi/django.wsgi'%env)