spadefoot / kohana-orm-leap

An ORM module for the Kohana PHP framework that is designed to work with all major databases.
http://spadefoot.github.io/kohana-orm-leap/
100 stars 25 forks source link

Fatal when Primary Key is not ID #96

Open jstrobel opened 10 years ago

jstrobel commented 10 years ago

I got a Fatal error when the primary key is not Fieldname: ID.

I fixed it with this in Base_DB_ORM_Insert_Proxy: public function execute() { $model = $this->model; $auto_increment = $model::is_auto_incremented();