This commit is contained in:
ct
2025-07-14 20:01:13 +08:00
parent a0cbe192e7
commit e7c6c02785
9 changed files with 1709 additions and 80 deletions

View File

@@ -0,0 +1,34 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
use Illuminate\Support\Facades\DB;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('meme_medias', function (Blueprint $table) {
$table->integer('group')->nullable()->after('id');
$table->index('group');
});
// Update existing records to be labeled as 'g1'
DB::table('meme_medias')->whereNull('group')->update(['group' => 1]);
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('meme_medias', function (Blueprint $table) {
$table->dropIndex(['group']);
$table->dropColumn('group');
});
}
};