@@ -5,13 +5,13 @@ Doctrine always adds a primary key column named 'id' to tables that doesn't have
Lets say we want to create a database table called 'user' with columns id(primary key), name, username, password and created. Provided that you have already installed Doctrine these few lines of code are all you need:
User.php :
<code>
<code type="php">
class User extends Doctrine_Record
{
public function setTableDefinition()
{
// set 'user' table columns, note that
// id column is always auto-created
// id column is auto-created as no primary key is specified