Advertisement
Guest User

Untitled

a guest
May 25th, 2015
389
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 3.83 KB | None | 0 0
  1. Running migrations:
  2.   Rendering model states... DONE
  3.   Applying notes.0002_note_date...WARNING: password file "/Users/jamiestrauss/.pgpass" has group or world access; permissions should be u=rw (0600) or less
  4. Traceback (most recent call last):
  5.   File "/Users/jamiestrauss/.pyenv/versions/squirrel-process/lib/python3.4/site-packages/django/db/backends/utils.py", line 64, in execute
  6.     return self.cursor.execute(sql, params)
  7. psycopg2.ProgrammingError: relation "notes_note" does not exist
  8.  
  9.  
  10. The above exception was the direct cause of the following exception:
  11.  
  12. Traceback (most recent call last):
  13.   File "manage.py", line 10, in <module>
  14.     execute_from_command_line(sys.argv)
  15.   File "/Users/jamiestrauss/.pyenv/versions/squirrel-process/lib/python3.4/site-packages/django/core/management/__init__.py", line 338, in execute_from_command_line
  16.     utility.execute()
  17.   File "/Users/jamiestrauss/.pyenv/versions/squirrel-process/lib/python3.4/site-packages/django/core/management/__init__.py", line 330, in execute
  18.     self.fetch_command(subcommand).run_from_argv(self.argv)
  19.   File "/Users/jamiestrauss/.pyenv/versions/squirrel-process/lib/python3.4/site-packages/django/core/management/base.py", line 390, in run_from_argv
  20.     self.execute(*args, **cmd_options)
  21.   File "/Users/jamiestrauss/.pyenv/versions/squirrel-process/lib/python3.4/site-packages/django/core/management/base.py", line 441, in execute
  22.     output = self.handle(*args, **options)
  23.   File "/Users/jamiestrauss/.pyenv/versions/squirrel-process/lib/python3.4/site-packages/django/core/management/commands/migrate.py", line 221, in handle
  24.     executor.migrate(targets, plan, fake=fake, fake_initial=fake_initial)
  25.   File "/Users/jamiestrauss/.pyenv/versions/squirrel-process/lib/python3.4/site-packages/django/db/migrations/executor.py", line 110, in migrate
  26.     self.apply_migration(states[migration], migration, fake=fake, fake_initial=fake_initial)
  27.   File "/Users/jamiestrauss/.pyenv/versions/squirrel-process/lib/python3.4/site-packages/django/db/migrations/executor.py", line 147, in apply_migration
  28.     state = migration.apply(state, schema_editor)
  29.   File "/Users/jamiestrauss/.pyenv/versions/squirrel-process/lib/python3.4/site-packages/django/db/migrations/migration.py", line 115, in apply
  30.     operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
  31.   File "/Users/jamiestrauss/.pyenv/versions/squirrel-process/lib/python3.4/site-packages/django/db/migrations/operations/fields.py", line 62, in database_forwards
  32.     field,
  33.   File "/Users/jamiestrauss/.pyenv/versions/squirrel-process/lib/python3.4/site-packages/django/db/backends/base/schema.py", line 403, in add_field
  34.     self.execute(sql, params)
  35.   File "/Users/jamiestrauss/.pyenv/versions/squirrel-process/lib/python3.4/site-packages/django/db/backends/base/schema.py", line 111, in execute
  36.     cursor.execute(sql, params)
  37.   File "/Users/jamiestrauss/.pyenv/versions/squirrel-process/lib/python3.4/site-packages/django/db/backends/utils.py", line 79, in execute
  38.     return super(CursorDebugWrapper, self).execute(sql, params)
  39.   File "/Users/jamiestrauss/.pyenv/versions/squirrel-process/lib/python3.4/site-packages/django/db/backends/utils.py", line 64, in execute
  40.     return self.cursor.execute(sql, params)
  41.   File "/Users/jamiestrauss/.pyenv/versions/squirrel-process/lib/python3.4/site-packages/django/db/utils.py", line 97, in __exit__
  42.     six.reraise(dj_exc_type, dj_exc_value, traceback)
  43.   File "/Users/jamiestrauss/.pyenv/versions/squirrel-process/lib/python3.4/site-packages/django/utils/six.py", line 658, in reraise
  44.     raise value.with_traceback(tb)
  45.   File "/Users/jamiestrauss/.pyenv/versions/squirrel-process/lib/python3.4/site-packages/django/db/backends/utils.py", line 64, in execute
  46.     return self.cursor.execute(sql, params)
  47. django.db.utils.ProgrammingError: relation "notes_note" does not exist
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement