Commit e0e2c87a00ed1d9f7db609cf35eb4e0ff9fdd61f

Authored by Sergio Oliveira
1 parent 8bc5d242

Removing syncdb (replaced by migrate on django 1.7)

Showing 1 changed file with 0 additions and 5 deletions   Show diff stats
fabfile.py
... ... @@ -127,10 +127,6 @@ def manage(command):
127 127 run('python manage.py {}'.format(command))
128 128  
129 129  
130   -def syncdb():
131   - manage('syncdb --no-initial-data')
132   -
133   -
134 130 def migrate():
135 131 manage('migrate')
136 132 manage('loaddata super_archives/fixture/initial_data.json')
... ... @@ -269,7 +265,6 @@ def deploy(noprovision=False):
269 265 install_requirements()
270 266 create_local_settings()
271 267 collectstatic()
272   - syncdb()
273 268 migrate()
274 269  
275 270 build_schema()
... ...