first commit

This commit is contained in:
2025-11-21 17:15:27 +08:00
commit c7cbe7edb7
152 changed files with 17423 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::create('machines', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('location')->nullable();
$table->string('status')->default('offline'); // online, offline, error
$table->decimal('temperature', 5, 2)->nullable();
$table->string('firmware_version')->nullable();
$table->timestamp('last_heartbeat_at')->nullable();
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('machines');
}
};