Hello, I'm using phalcon with sql server as database and trying to insert a record into the database failed.I got this error: DEFAULT or NULL are not allowed as explicit identity values. when i debug by displaying the query i notice that phalcon send by default auto-increment field as null to the database :
2 Phalcon\Db\Adapter\Pdo->execute(INSERT INTO "table_a" ("id", "test_a") VALUES (null, ?), Array([0] => 86))
Is it possible to modify phalcon model to not send (not to use id ) auto increment field at insertion to the database (eg: INSERT INTO "table_a" ("test_a") VALUES ( ?)) .
Thanks