default_db.test_perms.php 281 B

123456789101112
  1. <?php
  2. class Schema__Core__default_db__test_perms extends Schema_TableBase {
  3. public function initTypes() {
  4. parent::initTypes();
  5. $this->_types['WWW'] = 'p5:www_link';
  6. $this->_restrictions['WWW'] = array('maxLength' => 255);
  7. $this->_types['test_price'] = 'p5:price';
  8. }
  9. }