Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
6 | class AddParametersApicustom extends Migration |
||
7 | { |
||
8 | /** |
||
9 | * Run the migrations. |
||
10 | * |
||
11 | * @return void |
||
12 | */ |
||
13 | public function up() |
||
14 | { |
||
15 | Schema::table('cms_apicustom', function (Blueprint $table) { |
||
16 | // |
||
17 | $table->longText('parameters')->nullable(); |
||
18 | }); |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * Reverse the migrations. |
||
23 | * |
||
24 | * @return void |
||
25 | */ |
||
26 | public function down() |
||
31 | }); |
||
32 | } |
||
34 |