Skip to content

Commit

Permalink
πŸ› Bug - increased storage capacity of response data
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenMelbz committed Jun 25, 2020
1 parent 524d5ca commit 6fffdcd
Showing 1 changed file with 32 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?php

use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class IncreasingResponseBodySize extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('uptime_scans', function (Blueprint $table) {
$table->longText('response_body')->change();
});
}

/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('uptime_scans', function (Blueprint $table) {
//
});
}
}

0 comments on commit 6fffdcd

Please sign in to comment.