I have a PostgresSQL database table with a Primary Key, set to Not Null, auto-increment, called "pricesid"
I generate a collection in Powerapps which mirrors the above table in terms of column headers, data types etc. The only column that is different is the "pricesid" in my collection.
When I try and use the Collect function, it does not seem to be able to insert, without me defining values for the Primary Key.
If I do define values for the Primary Key, for example, setting them all initially to 0, then again the insert fails as they need to be unique. I don't want to generate a set of values to then insert via Collect as multiple users may be inserting and there could be some overlap.
How do I get the Collect function to work, that seems to need to include the "pricesid" column? It also won't let me set it to anything other than an integer as this is the data type.