BaseDiscount.class.php 2.36 KB
Newer Older
Яков's avatar
first  
Яков committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php

/**
 * BaseDiscount
 * 
 * This class has been auto-generated by the Doctrine ORM Framework
 * 
 * @property string $title
 * @property string $utm
 * @property string $comment
 * @property string $url
 * @property Doctrine_Collection $DiscountPhone
 * 
 * @method string              getTitle()         Returns the current record's "title" value
 * @method string              getUtm()           Returns the current record's "utm" value
 * @method string              getComment()       Returns the current record's "comment" value
 * @method string              getUrl()           Returns the current record's "url" value
 * @method Doctrine_Collection getDiscountPhone() Returns the current record's "DiscountPhone" collection
 * @method Discount            setTitle()         Sets the current record's "title" value
 * @method Discount            setUtm()           Sets the current record's "utm" value
 * @method Discount            setComment()       Sets the current record's "comment" value
 * @method Discount            setUrl()           Sets the current record's "url" value
 * @method Discount            setDiscountPhone() Sets the current record's "DiscountPhone" collection
 * 
 * @package    sf
 * @subpackage model
 * @author     Atma
 * @version    SVN: $Id: Builder.php 7490 2010-03-29 19:53:27Z jwage $
 */
abstract class BaseDiscount extends sfDoctrineRecord
{
    public function setTableDefinition()
    {
        $this->setTableName('discount');
        $this->hasColumn('title', 'string', 255, array(
             'type' => 'string',
             'notnull' => true,
             'length' => 255,
             ));
        $this->hasColumn('utm', 'string', 255, array(
             'type' => 'string',
             'notnull' => true,
             'length' => 255,
             ));
        $this->hasColumn('comment', 'string', 1000, array(
             'type' => 'string',
             'notnull' => false,
             'length' => 1000,
             ));
        $this->hasColumn('url', 'string', 20, array(
             'type' => 'string',
             'length' => 20,
             ));
    }

    public function setUp()
    {
        parent::setUp();
        $this->hasMany('DiscountPhone', array(
             'local' => 'id',
             'foreign' => 'discount_id'));

        $timestampable0 = new Doctrine_Template_Timestampable();
        $this->actAs($timestampable0);
    }
}