25 lines
759 B
PHP
25 lines
759 B
PHP
<?php
|
|
|
|
/**
|
|
* BaseCountryavailability
|
|
*
|
|
* This class has been auto-generated by the Doctrine ORM Framework
|
|
*
|
|
* @property string $country
|
|
* @property string $methods
|
|
*
|
|
* @package ##PACKAGE##
|
|
* @subpackage ##SUBPACKAGE##
|
|
* @author ##NAME## <##EMAIL##>
|
|
* @version SVN: $Id: Builder.php 5441 2009-01-30 22:58:43Z jwage $
|
|
*/
|
|
abstract class BaseCountryavailability extends Doctrine_Record
|
|
{
|
|
public function setTableDefinition()
|
|
{
|
|
$this->setTableName('countryavailability');
|
|
$this->hasColumn('country', 'string', 100, array('type' => 'string', 'length' => 100, 'primary' => true));
|
|
$this->hasColumn('availability', 'string', null, array('type' => 'string', 'notnull' => true));
|
|
}
|
|
|
|
} |