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
@@ -127,10 +127,6 @@ def manage(command): @@ -127,10 +127,6 @@ def manage(command):
127 run('python manage.py {}'.format(command)) 127 run('python manage.py {}'.format(command))
128 128
129 129
130 -def syncdb():  
131 - manage('syncdb --no-initial-data')  
132 -  
133 -  
134 def migrate(): 130 def migrate():
135 manage('migrate') 131 manage('migrate')
136 manage('loaddata super_archives/fixture/initial_data.json') 132 manage('loaddata super_archives/fixture/initial_data.json')
@@ -269,7 +265,6 @@ def deploy(noprovision=False): @@ -269,7 +265,6 @@ def deploy(noprovision=False):
269 install_requirements() 265 install_requirements()
270 create_local_settings() 266 create_local_settings()
271 collectstatic() 267 collectstatic()
272 - syncdb()  
273 migrate() 268 migrate()
274 269
275 build_schema() 270 build_schema()