1
0
mirror of synced 2025-01-05 16:53:21 +03:00
doctrine2/tests/models/cms/CmsComment.php

12 lines
347 B
PHP
Raw Normal View History

2008-05-08 18:17:35 +04:00
<?php
class CmsComment extends Doctrine_Entity
2008-05-08 18:17:35 +04:00
{
public static function initMetadata($class)
{
$class->mapColumn('id', 'integer', 4, array('primary' => true, 'autoincrement' => true));
$class->mapColumn('topic', 'string', 255);
$class->mapColumn('text', 'string');
$class->mapColumn('article_id', 'integer', 4);
}
}