前提・実現したいこと
Djangoアプリケーションを作成後、Herokuへのデプロイ後、migrateでrelation "auth_user" does not existを解消したいです。
ここに質問の内容を詳しく書いてください。
初心者を脱却ということで、簡単なDjangoアプリを作成し、それをHerokuへデプロイしました。
そこでデプロイは出来たのですが、migrateをしようとすると、途中で、django.db.utils.ProgrammingError: relation "auth_user" does not existというエラーが発生し、migrateが終われません。
https://qiita.com/frosty/items/66f5dff8fc723387108c
こちらの記事を参考に進めていきました。
個人的には、djangoのUserを使わず、カスタムユーザーにカスタマイズし、使用しているからなのかなと思いましたが、全く解決できません。
どのフォルダのソースコードが必要かお伝え頂ければ随時貼っていきますので、宜しくお願いします。
ご教授頂ける方がいらっしゃれば幸いです。
発生している問題・エラーメッセージ
Applying app_folder.0005_auto_20200920_1650...Traceback (most recent call last): File "/app/.heroku/python/lib/python3.7/site-packages/django/db/backends/utils.py", line 84, in _execute return self.cursor.execute(sql, params) psycopg2.errors.UndefinedTable: relation "auth_user" does not exist The above exception was the direct cause of the following exception: Traceback (most recent call last): File "manage.py", line 22, in <module> main() File "manage.py", line 18, in main execute_from_command_line(sys.argv) File "/app/.heroku/python/lib/python3.7/site-packages/django/core/management/__init__.py", line 401, in execute_from_command_line utility.execute() File "/app/.heroku/python/lib/python3.7/site-packages/django/core/management/__init__.py", line 395, in execute self.fetch_command(subcommand).run_from_argv(self.argv) File "/app/.heroku/python/lib/python3.7/site-packages/django/core/management/base.py", line 330, in run_from_argv self.execute(*args, **cmd_options) File "/app/.heroku/python/lib/python3.7/site-packages/django/core/management/base.py", line 371, in execute output = self.handle(*args, **options) File "/app/.heroku/python/lib/python3.7/site-packages/django/core/management/base.py", line 85, in wrapped res = handle_func(*args, **kwargs) File "/app/.heroku/python/lib/python3.7/site-packages/django/core/management/commands/migrate.py", line 245, in handle fake_initial=fake_initial, File "/app/.heroku/python/lib/python3.7/site-packages/django/db/migrations/executor.py", line 117, in migrate state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial) File "/app/.heroku/python/lib/python3.7/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial) File "/app/.heroku/python/lib/python3.7/site-packages/django/db/migrations/executor.py", line 227, in apply_migration state = migration.apply(state, schema_editor) File "/app/.heroku/python/lib/python3.7/site-packages/django/db/migrations/migration.py", line 124, in apply operation.database_forwards(self.app_label, schema_editor, old_state, project_state) File "/app/.heroku/python/lib/python3.7/site-packages/django/db/migrations/operations/fields.py", line 106, in database_forwards field, File "/app/.heroku/python/lib/python3.7/site-packages/django/db/backends/base/schema.py", line 487, in add_field self.execute(sql, params) File "/app/.heroku/python/lib/python3.7/site-packages/django/db/backends/base/schema.py", line 142, in execute cursor.execute(sql, params) File "/app/.heroku/python/lib/python3.7/site-packages/django/db/backends/utils.py", line 66, in execute return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) File "/app/.heroku/python/lib/python3.7/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers return executor(sql, params, many, context) File "/app/.heroku/python/lib/python3.7/site-packages/django/db/backends/utils.py", line 84, in _execute return self.cursor.execute(sql, params) File "/app/.heroku/python/lib/python3.7/site-packages/django/db/utils.py", line 90, in __exit__ raise dj_exc_value.with_traceback(traceback) from exc_value File "/app/.heroku/python/lib/python3.7/site-packages/django/db/backends/utils.py", line 84, in _execute return self.cursor.execute(sql, params) django.db.utils.ProgrammingError: relation "auth_user" does not exist
該当のソースコード
from django.conf import settings from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ('app_folder', '0004_user'), ] operations = [ migrations.AddField( model_name='sampledb', name='user', field=models.ForeignKey(default=1, on_delete=django.db.models.deletion.CASCADE, to='auth.user'), preserve_default=False, ), migrations.DeleteModel( name='User', ), ]
試したこと
1、--fakeinitialで実施して見ましたが、変わらず
2、スーパーユーザーを先に作ろうとしましたが、別の特定のカラムがないというエラーが出ました。
3、先にauthをmigrate実施しましたが、これも変わらず。
4、herekuアプリを作り直しましたがこれも変わらず。
5、原因と思われるmigrationsファイルの中の特定のファイルを削除しましたが、ファイルが見つからないというエラーが出て変わらずでした。
6、djangoのバージョンを下げてみましたが、別のモジュールがインポートできないというエラーが出ました。
7、全てのmigrationsファイルを削除したところ、別のエラーが発生しました。
補足情報(FW/ツールのバージョンなど)
Django 3.1.2
Python 3.7
ここにより詳細な情報を記載してください。
あなたの回答
tips
プレビュー