| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | public function up(Schema $schema) |
||
| 18 | { |
||
| 19 | if ($schema->hasTable('dtb_plugin_option')) { |
||
| 20 | return; |
||
| 21 | } |
||
| 22 | $app = \Eccube\Application::getInstance(); |
||
| 23 | $meta = $app['orm.em']->getMetadataFactory()->getMetadataFor('Eccube\Entity\PluginOption'); |
||
| 24 | $tool = new SchemaTool($app['orm.em']); |
||
| 25 | $tool->createSchema(array($meta)); |
||
| 26 | } |
||
| 27 | |||
| 37 |