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

33 lines
688 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('device', function (Blueprint $table) {
$table->text('device_data')->comment('设备信息')->change();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('device', function (Blueprint $table) {
$table->string('device_data')->comment('设备信息');
});
}
};