Refactored structure

This commit is contained in:
Dmitry Khomutov 2016-04-17 12:34:12 +06:00
commit e5164ae1dd
329 changed files with 277 additions and 457 deletions

View file

@ -1,18 +0,0 @@
<?php
namespace Test\Model\Base;
use b8\Model;
class BadModel extends Model
{
protected $_tableName = 'bad_table';
public $columns = array(
'id' => array('type' => 'catfish'),
);
public $indexes = array(
);
public $foreignKeys = array(
);
}