File: /www/wwwroot//my.esfyn.top/database/migrations/2023_10_18_112556_alter_my_api_add_order_field.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AlterMyApiAddOrderField extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('my_api', function (Blueprint $table) {
$table->text('order_field')->nullable()->comment('排序字段');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('my_api', function (Blueprint $table) {
$table->dropColumn(['order_field']);
});
}
}