setTableName('message'); $this->hasColumn('id', 'integer', null, array( 'type' => 'integer', 'primary' => true, 'autoincrement' => true, )); $this->hasColumn('name', 'string', 255, array( 'type' => 'string', 'length' => '255', )); $this->hasColumn('phone', 'string', 255, array( 'type' => 'string', 'length' => '255', )); $this->hasColumn('email', 'string', 255, array( 'type' => 'string', 'length' => '255', )); $this->hasColumn('message', 'clob', null, array( 'type' => 'clob', )); $this->option('type', 'InnoDB'); $this->option('collate', 'utf8_unicode_ci'); $this->option('charset', 'utf8'); } public function setUp() { $timestampable0 = new Doctrine_Template_Timestampable(); $this->actAs($timestampable0); } }