24 lines
531 B
PHP
24 lines
531 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
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("technologies", function (Blueprint $table): void {
|
|
$table->id();
|
|
$table->string("name")->unique();
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists("technologies");
|
|
}
|
|
};
|