modify table

This commit is contained in:
zhouchangcheng 2024-05-24 18:16:55 +08:00
parent 05d3311506
commit b12be847df

View File

@ -0,0 +1,29 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('notices', function (Blueprint $table) {
$table->integer('notice_id')->unique()->comment('通知id')
->after('id');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('notices', function (Blueprint $table) {
$table->dropColumn('notice_id');
});
}
};