goodsnotices/database/migrations/2024_05_24_095735_modify_notices_table.php
zhouchangcheng b12be847df modify table
2024-05-24 18:16:55 +08:00

30 lines
648 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.
*/
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');
});
}
};