Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
41 | public function down() |
||
42 | { |
||
43 | $modules = [ 'user', 'group', 'role', 'profile' ]; |
||
44 | |||
45 | foreach ($modules as $moduleName) { |
||
46 | $module = Module::where('name', $moduleName)->first(); |
||
47 | |||
48 | $module->fields() |
||
49 | ->where('module_id', $module->id) |
||
50 | ->where('name', 'domain') |
||
51 | ->delete(); |
||
52 | } |
||
55 |