Advertisement
Guest User

Untitled

a guest
May 22nd, 2015
488
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.27 KB | None | 0 0
  1. python manage.py syncdb
  2. System check identified some issues:
  3.  
  4. WARNINGS:
  5. crowdsourcing.Project.deadline: (fields.W161) Fixed default value provided.
  6. HINT: It seems you set a fixed date / time / datetime value as default for this field. This may not be what you want. If you want to have the current date as default, use `django.utils.timezone.now`
  7. /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/core/management/commands/syncdb.py:24: RemovedInDjango19Warning: The syncdb command will be removed in Django 1.9
  8. warnings.warn("The syncdb command will be removed in Django 1.9", RemovedInDjango19Warning)
  9.  
  10. Operations to perform:
  11. Synchronize unmigrated apps: djangobower, staticfiles, messages, crowdsourcing, compressor, rest_framework, autofixture
  12. Apply all migrations: admin, oauth2_provider, contenttypes, auth, sessions
  13. Synchronizing apps without migrations:
  14. Creating tables...
  15. Creating table crowdsourcing_registrationmodel
  16. Creating table crowdsourcing_passwordresetmodel
  17. Creating table crowdsourcing_region
  18. Creating table crowdsourcing_country
  19. Creating table crowdsourcing_city
  20. Creating table crowdsourcing_address
  21. Creating table crowdsourcing_role
  22. Creating table crowdsourcing_language
  23. Creating table crowdsourcing_userprofile
  24. Creating table crowdsourcing_usercountry
  25. Creating table crowdsourcing_skill
  26. Creating table crowdsourcing_worker
  27. Creating table crowdsourcing_workerskill
  28. Creating table crowdsourcing_requester
  29. Creating table crowdsourcing_userrole
  30. Creating table crowdsourcing_friendship
  31. Creating table crowdsourcing_category
  32. Creating table crowdsourcing_project
  33. Creating table crowdsourcing_projectrequester
  34. Creating table crowdsourcing_module
  35. Creating table crowdsourcing_modulecategory
  36. Creating table crowdsourcing_projectcategory
  37. Creating table crowdsourcing_template
  38. Creating table crowdsourcing_templateitem
  39. Creating table crowdsourcing_templateitemproperties
  40. Creating table crowdsourcing_task
  41. Creating table crowdsourcing_taskworker
  42. Creating table crowdsourcing_taskworkerresult
  43. Creating table crowdsourcing_workermoduleapplication
  44. Creating table crowdsourcing_activitylog
  45. Creating table crowdsourcing_qualification
  46. Creating table crowdsourcing_qualificationitem
  47. Creating table crowdsourcing_userlanguage
  48. Creating table crowdsourcing_currency
  49. Creating table crowdsourcing_userpreferences
  50. Creating table crowdsourcing_requesterranking
  51. Running deferred SQL...
  52. Installing custom SQL...
  53. Traceback (most recent call last):
  54. File "manage.py", line 10, in <module>
  55. execute_from_command_line(sys.argv)
  56. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/core/management/__init__.py", line 338, in execute_from_command_line
  57. utility.execute()
  58. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/core/management/__init__.py", line 330, in execute
  59. self.fetch_command(subcommand).run_from_argv(self.argv)
  60. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/core/management/base.py", line 390, in run_from_argv
  61. self.execute(*args, **cmd_options)
  62. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/core/management/base.py", line 441, in execute
  63. output = self.handle(*args, **options)
  64. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/core/management/commands/syncdb.py", line 25, in handle
  65. call_command("migrate", **options)
  66. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/core/management/__init__.py", line 120, in call_command
  67. return command.execute(*args, **defaults)
  68. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/core/management/base.py", line 441, in execute
  69. output = self.handle(*args, **options)
  70. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/core/management/commands/migrate.py", line 179, in handle
  71. created_models = self.sync_apps(connection, executor.loader.unmigrated_apps)
  72. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/core/management/commands/migrate.py", line 364, in sync_apps
  73. hide_empty=True,
  74. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/core/management/__init__.py", line 120, in call_command
  75. return command.execute(*args, **defaults)
  76. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/core/management/base.py", line 441, in execute
  77. output = self.handle(*args, **options)
  78. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/core/management/commands/loaddata.py", line 60, in handle
  79. self.loaddata(fixture_labels)
  80. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/core/management/commands/loaddata.py", line 90, in loaddata
  81. self.load_label(fixture_label)
  82. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/core/management/commands/loaddata.py", line 126, in load_label
  83. for fixture_file, fixture_dir, fixture_name in self.find_fixtures(fixture_label):
  84. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/utils/lru_cache.py", line 101, in wrapper
  85. result = user_function(*args, **kwds)
  86. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/core/management/commands/loaddata.py", line 191, in find_fixtures
  87. fixture_dirs = self.fixture_dirs
  88. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/utils/functional.py", line 60, in __get__
  89. res = instance.__dict__[self.name] = self.func(instance)
  90. File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/core/management/commands/loaddata.py", line 246, in fixture_dirs
  91. raise ImproperlyConfigured("settings.FIXTURE_DIRS contains duplicates.")
  92. django.core.exceptions.ImproperlyConfigured: settings.FIXTURE_DIRS contains duplicates.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement