#19 - year periods

This commit is contained in:
Adrian Hopek
2022-01-19 10:42:04 +01:00
parent 91bd46cc36
commit 7826185339
7 changed files with 232 additions and 15 deletions

View File

@@ -0,0 +1,23 @@
<?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("year_periods", function (Blueprint $table): void {
$table->id();
$table->integer("year")->unique()->index();
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists("year_periods");
}
};