Ejemplo n.º 1
0
 public function table($yiiTableName)
 {
     $table = $this->getRawTableName($yiiTableName);
     return parent::table($table);
 }
Ejemplo n.º 2
0
 public function testCheckCrossDependentTablesNotPresent()
 {
     $this->seeder->table('book')->columns(['id']);
     $this->seeder->table('article')->columns(['id']);
     Helper::runPrivateMethod($this->seeder, 'checkCrossDependentTables');
 }