Describe the problem/error/question
I have created a table in PostgreSQL using the following:
create table
public.austin_api_logger (
id bigint generated by default as identity,
created_at timestamp with time zone null default now(),
status_code integer null,
count_num_of_rows integer null,
last_offset bigint null,
execute_date_time timestamp with time zone null default now(),
constraint austin_api_logger_pkey primary key (id)
) tablespace pg_default;
Here the id
field is auto increment. But when I try to insert record in PostgreSQL using Postgres
node by setting Mapping Column Mode
to Map Each Column Manually
it asks me enter a value in the id
field.
Why?
What is the error message (if any)?
None
Information on your n8n setup
- n8n version: 1.0.5
- Database (default: SQLite): PostgreSQL