4

pgadmin 'NoneType' object has no attribute 'strip'

'NoneType' object has no attribute 'strip'

I deleted FKs and PKs. Pgadmin has stopped working properly. The tables with which FK and PK are related don't work either. Nothing is deleted. And the data is not showing. How can I fix?

  • 2
    Welcome! Can you please provide steps to reproduce the problem (a [mre])? See [ask] for further guidance. – starball Jan 11 '23 at 22:42

1 Answers1

1

I ran into the same error today. I did some silly things and renamed table copies I was generating during texting. Adding a prefix of x,y & z as I went. Deleting in PG Admin 4.6 from the right-click menu produced this error. Using

    Drop Table schema.name 

did delete without any error.

Juncus
  • 11
  • 2