Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | public function handle(EntityWasCreated $event) |
||
24 | { |
||
25 | if ((bool) $event->entity->create_table) { |
||
26 | Schema::create($event->entity->table_name, function ($table) { |
||
27 | $table->increments('id'); |
||
28 | $table->timestamps(); |
||
29 | $table->softDeletes(); |
||
30 | }); |
||
31 | event(new TableWasCreatedInDb($event->entity)); |
||
32 | } |
||
33 | } |
||
34 | } |
||
35 |