ufutx.dma/database/migrations/2023_11_09_181452_change_table_food.php
2026-03-04 14:42:40 +08:00

33 lines
684 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.
*
* @return void
*/
public function up()
{
Schema::table('food', function (Blueprint $table) {
$table->text('config')->nullable()->comment('营养素配置')->after('stock')->change();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('food', function (Blueprint $table) {
$table->dropColumn('config');
});
}
};