File: /www/wwwroot/my.esfyn.top/database/migrations/2023_10_18_151203_alter_my_api_update_response.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AlterMyApiUpdateResponse extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('my_api', function (Blueprint $table) {
$table->text('response')->nullable()->change();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}