2023-03-28 06:22:17 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
|
2023-08-08 09:51:36 +00:00
|
|
|
return new class extends Migration {
|
2023-03-28 06:22:17 +00:00
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*/
|
|
|
|
public function up(): void
|
|
|
|
{
|
|
|
|
Schema::create('kubernetes', function (Blueprint $table) {
|
|
|
|
$table->id();
|
2023-03-28 10:09:34 +00:00
|
|
|
$table->string('uuid')->unique();
|
|
|
|
|
2023-03-28 06:22:17 +00:00
|
|
|
$table->timestamps();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*/
|
|
|
|
public function down(): void
|
|
|
|
{
|
|
|
|
Schema::dropIfExists('kubernetes');
|
|
|
|
}
|
|
|
|
};
|