web/database/migrations/2024_03_30_000007_create_bo...

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::create('bootlog', function (Blueprint $table) {
$table->dateTime('time')->useCurrent();
$table->char('hostname', 128)->default('UNKNOWN');
$table->boolean('channel')->default(false);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('bootlog');
}
};