12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- class CcLocaleTableMap extends TableMap {
-
- const CLASS_NAME = 'airtime.map.CcLocaleTableMap';
-
- public function initialize()
- {
-
- $this->setName('cc_locale');
- $this->setPhpName('CcLocale');
- $this->setClassname('CcLocale');
- $this->setPackage('airtime');
- $this->setUseIdGenerator(true);
- $this->setPrimaryKeyMethodInfo('cc_locale_id_seq');
-
- $this->addPrimaryKey('ID', 'DbId', 'INTEGER', true, null, null);
- $this->addColumn('LOCALE_CODE', 'DbLocaleCode', 'VARCHAR', true, 16, null);
- $this->addColumn('LOCALE_LANG', 'DbLocaleLang', 'VARCHAR', true, 128, null);
-
- }
-
- public function buildRelations()
- {
- }
- }
|