Имеется табличка adventure_section с полями name, section, author, text и ещё одна таблица. Эти две таблицы связаны по полю section. При выполнении этого запроса:
cur.execute("INSERT INTO adventure_section (name, section, author, text) VALUES (%s, %s, %s, %s)", (name, section, author, text))
psycopg2.ProgrammingError: column "section" of relation "adventure_section" does not exist
LINE 1: INSERT INTO adventure_section (name, section, author, text) ...
^