cafeg/database/migrations/2025_08_06_102845_create_promocodes_table.php
2025-08-07 14:06:02 +08:00

26 lines
580 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('promocodes', function (Blueprint $table) {
$table->enum('from', ['cafeg', 'teamaster', 'unknown'])->comment('來源')->after('id');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('promocodes');
}
};