diff -r 56befcb22751 -r 94a1dc255022 thd/lib/model/doctrine/base/BaseThdImage.class.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/thd/lib/model/doctrine/base/BaseThdImage.class.php Tue Sep 22 16:40:38 2009 +0200 @@ -0,0 +1,40 @@ +setTableName('thd_image'); + $this->hasColumn('id', 'integer', 4, array( + 'type' => 'integer', + 'primary' => true, + 'autoincrement' => true, + 'length' => '4', + )); + $this->hasColumn('film_ref', 'integer', 4, array( + 'type' => 'integer', + 'notnull' => true, + 'length' => '4', + )); + $this->hasColumn('type', 'integer', 1, array( + 'type' => 'integer', + 'notnull' => true, + 'length' => '1', + )); + $this->hasColumn('file', 'string', 255, array( + 'type' => 'string', + 'notnull' => true, + 'length' => '255', + )); + } + + public function setUp() + { + $this->hasOne('ThdFilm', array( + 'local' => 'film_ref', + 'foreign' => 'ref')); + } +} \ No newline at end of file