1
0
mirror of synced 2024-12-15 07:36:03 +03:00
doctrine2/website/lib/model/doctrine/generated/BaseBlogPost.class.php
2007-09-06 15:51:12 +00:00

31 lines
686 B
PHP

<?php
/*
* Base class; DO NOT EDIT
*
* auto-generated by the sfDoctrine plugin
*/
class BaseBlogPost extends sfDoctrineRecord
{
public function setTableDefinition()
{
$this->setTableName('blog_post');
$this->hasColumn('id', 'integer', 4, array ( 'primary' => true, 'autoincrement' => true,));
$this->hasColumn('created_at', 'timestamp', null, array ());
$this->hasColumn('updated_at', 'timestamp', null, array ());
$this->hasColumn('name', 'string', 255, array ());
$this->hasColumn('slug', 'string', 255, array ( 'unique' => true,));
$this->hasColumn('body', 'clob', null, array ());
}
public function setUp()
{
}
}