first commit
This commit is contained in:
@@ -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');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user