Quote from: m.engel at Feb 24, 2015, 07:15 AMSounds like something with your PrimaryKey definition isn`t correct. This would result something like you describe.
Thank you for your reply. Here is a section of schema. Table k1 and k2 are the same. Can you guide me with how to correct the PrimaryKey definition?
<object class="K1" table="k1" extends="xPDOSimpleObject">
<field key="u_id" dbtype="int" precision="11" phptype="integer" null="false" />
<field key="company" dbtype="varchar" precision="50" phptype="string" null="false" default="" />
<field key="cohort" dbtype="varchar" precision="50" phptype="string" null="false" default="" index="index" />
<field key="name" dbtype="varchar" precision="50" phptype="string" null="false" default="" />
<field key="email" dbtype="varchar" precision="50" phptype="string" null="false" default="" />
<field key="code" dbtype="varchar" precision="50" phptype="string" null="false" />
<field key="results" dbtype="text" phptype="string" null="false" />
<field key="status" dbtype="int" precision="1" phptype="integer" null="false" default="0" />
<field key="timestamp" dbtype="timestamp" phptype="timestamp" null="false" default="CURRENT_TIMESTAMP" />
<index alias="cohort" name="cohort" primary="false" unique="false" type="FULLTEXT" >
<column key="cohort" length="" collation="" null="false" />
</index>
</object>