| Conditions | 2 |
| Paths | 2 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public function up() |
||
| 19 | { |
||
| 20 | ob_start(); |
||
| 21 | if ($this->db->getTableSchema('{{%item}}', true) !== null) { |
||
| 22 | $this->dropTable('{{%item}}'); |
||
| 23 | } |
||
| 24 | $this->createTable('{{%item}}', [ |
||
| 25 | 'id' => $this->primaryKey(), |
||
| 26 | 'params' => $this->text(), |
||
| 27 | ]); |
||
| 28 | |||
| 29 | // update cache (sqlite bug) |
||
| 30 | $this->db->getSchema()->getTableSchema('{{%item}}', true); |
||
| 31 | ob_end_clean(); |
||
| 32 | } |
||
| 33 | } |