ufutx.dma/database/migrations/2024_01_12_171233_change_table_agencies.php
2026-03-04 14:42:40 +08:00

33 lines
698 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('agencies', function (Blueprint $table) {
$table->integer('partner_id')->nullable()->comment('代理id')->change();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('agencies', function (Blueprint $table) {
$table->integer('partner_id')->comment('代理id');
});
}
};