djangoでmigration後にPosgresSQLのDBにデータが追加されません。
postgresqlにはtestdbというデータベースがありますが、
コマンドでpython manage.py migrateを実行したあとに
testdb=# \dをすると、
Did not find any relations.と表示されてしまいます。
ちなみに、python manage.py showmigrationsでは下記のように表示されました。
admin
[X] 0001_initial
[X] 0002_logentry_remove_auto_add
[X] 0003_logentry_add_action_flag_choices
auth
[X] 0001_initial
[X] 0002_alter_permission_name_max_length
[X] 0003_alter_user_email_max_length
[X] 0004_alter_user_username_opts
[X] 0005_alter_user_last_login_null
[X] 0006_require_contenttypes_0002
[X] 0007_alter_validators_add_error_messages
[X] 0008_alter_user_username_max_length
[X] 0009_alter_user_last_name_max_length
blog
[X] 0001_initial
[X] 0002_auto_20210125_1511
[X] 0003_conversation_word
[X] 0004_auto_20210126_1233
[X] 0005_auto_20210126_1234
contenttypes
[X] 0001_initial
[X] 0002_remove_content_type_name
sessions
[X] 0001_initial
あなたの回答
tips
プレビュー