File: /home/posscale/www/printmanager/database/migrations/tenant/2025_08_06_130832_add_toner_status.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('printers', function (Blueprint $table) {
$table->integer('toner_status')->nullable()->after('toner_type');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('printers', function (Blueprint $table) {
$table->dropColumn('toner_status');
});
}
};