Null for Postgres nextval
Hello,
I'm trying to insert some values into a postgres table, first column of which is a serial type.
So I'm doing
INSERT INTO users (
<cfqueryparam null="yes" cfsqltype="cf_sql_integer">,
<cfqueryparam ....
)
and so on. PG raises an error, "null value in column "id_user" violates not-null constraint"
How can I fix it?
thanks....
