1<?php
2
3/**
4 * BaseTicket_1527_User
5 *
6 * This class has been auto-generated by the Doctrine ORM Framework
7 *
8 * @property string $username
9 * @property string $password
10 *
11 * @package    ##PACKAGE##
12 * @subpackage ##SUBPACKAGE##
13 * @author     ##NAME## <##EMAIL##>
14 * @version    SVN: $Id: Builder.php 7490 2010-03-29 19:53:27Z jwage $
15 */
16abstract class BaseTicket_1527_User extends Doctrine_Record
17{
18    public function setTableDefinition()
19    {
20        $this->setTableName('ticket_1527__user');
21        $this->hasColumn('username', 'string', 255, array(
22             'type' => 'string',
23             'extra' =>
24             array(
25              'test' => 123,
26             ),
27             'length' => '255',
28             ));
29        $this->hasColumn('password', 'string', 255, array(
30             'type' => 'string',
31             'length' => '255',
32             ));
33    }
34
35    public function setUp()
36    {
37        parent::setUp();
38
39    }
40}