Total Complexity | 4 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class CreateCrudsTableEasypanel extends Migration |
||
8 | { |
||
9 | /** |
||
10 | * {@inheritdoc} |
||
11 | */ |
||
12 | public function getConnection() |
||
13 | { |
||
14 | return config('easy_panel_config.database.connection') ?: config('database.default'); |
||
15 | } |
||
16 | |||
17 | /** |
||
18 | * Run the migrations. |
||
19 | * |
||
20 | * @return void |
||
21 | */ |
||
22 | public function up() |
||
35 | }); |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * Reverse the migrations. |
||
40 | * |
||
41 | * @return void |
||
42 | */ |
||
43 | public function down() |
||
46 | } |
||
47 | } |
||
48 |