Send me the snap
On Tue, 16 Apr 2019, 13:38 Shubham Joshi, <shubham@tersesoft.com> wrote:
same error stillOn Tue, Apr 16, 2019 at 1:36 PM Vivek Jha <jhavivek260@gmail.com> wrote:Delete all the old migrations and remigrate--On Tue, 16 Apr 2019, 13:34 Shubham Joshi, <shubham@tersesoft.com> wrote:Hello Vivek can you help me in thisI am referringchanged app name 'users' to accountsgot an errrorSchool) snj@snj-ThinkPad-T440p:~/School$ python manage.py createsuperuserUsername: shubham311507Traceback (most recent call last):File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/backends/utils.py", line 84, in _executereturn self.cursor.execute(sql, params)psycopg2.errors.UndefinedTable: relation "accounts_customuser" does not existLINE 1: ...."date_joined", "accounts_customuser"."name" FROM "accounts_...^The above exception was the direct cause of the following exception:Traceback (most recent call last):File "manage.py", line 21, in <module>main()File "manage.py", line 17, in mainexecute_from_command_line(sys.argv)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/core/management/__init__.py", line 381, in execute_from_command_lineutility.execute()File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/core/management/__init__.py", line 375, in executeself.fetch_command(subcommand).run_from_argv(self.argv)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/core/management/base.py", line 323, in run_from_argvself.execute(*args, **cmd_options)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/contrib/auth/management/commands/createsuperuser.py", line 61, in executereturn super().execute(*args, **options)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/core/management/base.py", line 364, in executeoutput = self.handle(*args, **options)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/contrib/auth/management/commands/createsuperuser.py", line 95, in handleerror_msg = self._validate_username(username, verbose_field_name, database)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/contrib/auth/management/commands/createsuperuser.py", line 201, in _validate_usernameself.UserModel._default_manager.db_manager(database).get_by_natural_key(username)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/contrib/auth/base_user.py", line 44, in get_by_natural_keyreturn self.get(**{self.model.USERNAME_FIELD: username})File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/models/manager.py", line 82, in manager_methodreturn getattr(self.get_queryset(), name)(*args, **kwargs)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/models/query.py", line 402, in getnum = len(clone)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/models/query.py", line 256, in __len__self._fetch_all()File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/models/query.py", line 1242, in _fetch_allself._result_cache = list(self._iterable_class(self))File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/models/query.py", line 55, in __iter__results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/models/sql/compiler.py", line 1097, in execute_sqlcursor.execute(sql, params)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/backends/utils.py", line 99, in executereturn super().execute(sql, params)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/backends/utils.py", line 67, in executereturn self._execute_with_wrappers(sql, params, many=False, executor=self._execute)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/backends/utils.py", line 76, in _execute_with_wrappersreturn executor(sql, params, many, context)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/backends/utils.py", line 84, in _executereturn self.cursor.execute(sql, params)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/utils.py", line 89, in __exit__raise dj_exc_value.with_traceback(traceback) from exc_valueFile "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/backends/utils.py", line 84, in _executereturn self.cursor.execute(sql, params)django.db.utils.ProgrammingError: relation "accounts_customuser" does not existLINE 1: ...."date_joined", "accounts_customuser"."name" FROM "accounts_...^completely unaware what happeningOn Tue, Apr 16, 2019 at 1:07 PM Vivek Jha <jhavivek260@gmail.com> wrote:Welcome--On Tue, 16 Apr 2019, 13:03 Shubham Joshi, <shubham@tersesoft.com> wrote:Ya it worked for me thanks--
On Tuesday, April 16, 2019 at 12:59:10 PM UTC+5:30, Vivek Jha wrote:python manage.py migrate --fakeOn Tue, 16 Apr 2019, 12:57 Shubham Joshi, <shu...@tersesoft.com> wrote:-------------------------------------------error------------------------------------------------(School) snj@snj-ThinkPad-T440p:~/School$ python manage.py migrateOperations to perform:Apply all migrations: admin, auth, contenttypes, sessionsRunning migrations:Applying auth.0010_alter_group_name_max_length...Traceback (most recent call last):File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/backends/utils.py", line 84, in _executereturn self.cursor.execute(sql, params)psycopg2.errors.InsufficientPrivilege: must be owner of relation auth_groupThe above exception was the direct cause of the following exception:Traceback (most recent call last):File "manage.py", line 21, in <module>main()File "manage.py", line 17, in mainexecute_from_command_line(sys.argv)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/core/management/__init__.py", line 381, in execute_from_command_lineutility.execute()File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/core/management/__init__.py", line 375, in executeself.fetch_command(subcommand).run_from_argv(self.argv)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/core/management/base.py", line 323, in run_from_argvself.execute(*args, **cmd_options)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/core/management/base.py", line 364, in executeoutput = self.handle(*args, **options)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/core/management/base.py", line 83, in wrappedres = handle_func(*args, **kwargs)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 234, in handlefake_initial=fake_initial,File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migratestate = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwardsstate = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/migrations/executor.py", line 245, in apply_migrationstate = migration.apply(state, schema_editor)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/migrations/migration.py", line 124, in applyoperation.database_forwards(self.app_label, schema_editor, old_state, project_state)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/migrations/operations/fields.py", line 249, in database_forwardsschema_editor.alter_field(from_model, from_field, to_field)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 535, in alter_fieldold_db_params, new_db_params, strict)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/backends/postgresql/schema.py", line 122, in _alter_fieldnew_db_params, strict,File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 685, in _alter_fieldparams,File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 137, in executecursor.execute(sql, params)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/backends/utils.py", line 99, in executereturn super().execute(sql, params)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/backends/utils.py", line 67, in executereturn self._execute_with_wrappers(sql, params, many=False, executor=self._execute)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/backends/utils.py", line 76, in _execute_with_wrappersreturn executor(sql, params, many, context)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/backends/utils.py", line 84, in _executereturn self.cursor.execute(sql, params)File "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/utils.py", line 89, in __exit__raise dj_exc_value.with_traceback(traceback) from exc_valueFile "/home/snj/.virtualenvs/School/lib/python3.5/site-packages/django/db/backends/utils.py", line 84, in _executereturn self.cursor.execute(sql, params)django.db.utils.ProgrammingError: must be owner of relation auth_group--------------------------------------------------------------------settingsDATABASES = {'default': {'ENGINE': 'django.db.backends.postgresql_psycopg2','NAME': 'school','USER': 'shubham311507','PASSWORD': 'snj','HOST': 'localhost','PORT': '5433',}}
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/82507831-9ed5-497b-a4b5-9be9b2e034a0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/6e5d1b01-b37c-4ff3-a75f-6968369f8d89%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAMriZeG_NNRqxL%3Dg613xZnE7UAHA21n-Xk7779OuG_kxoUoTOQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
----
Shubham Joshi Business Developer | Terse Software M: 8390246938 E: shubham@tersesoft.com www.tersesoft.com
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAGJdmX7%3DMQshoxJ5-W-bSvtZ%3Dq38KnXwH5-bv6u1fXcWL8cAbQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAMriZeFRDKp2Hd5Q3TjWUk40%3DWKqgMJUAjCe%2BCN_bGN2McQbaQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
----
Shubham Joshi Business Developer | Terse Software M: 8390246938 E: shubham@tersesoft.com www.tersesoft.com
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAGJdmX6scLhrzD719XjSsZUFpaJoSSE519%2BFnYjb%2Biq1%2BLG23g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAMriZeHtsaRW-Q1hgwRShNx9SwYDK%2B-Go7sqMFUiYtc%2BGp12Og%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
No comments:
Post a Comment