add sort column

This commit is contained in:
notCharles 2024-04-20 17:57:14 -04:00
parent 3e01e483fb
commit 22c03c8075

View File

@ -0,0 +1,28 @@
<?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('egg_variables', function (Blueprint $table) {
$table->unsignedTinyInteger('sort')->nullable()->after('egg_id');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('egg_variables', function (Blueprint $table) {
$table->dropColumn('sort');
});
}
};