17
database/factories/YearPeriodFactory.php
Normal file
17
database/factories/YearPeriodFactory.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Database\Factories;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
|
||||
class YearPeriodFactory extends Factory
|
||||
{
|
||||
public function definition(): array
|
||||
{
|
||||
return [
|
||||
"year" => $this->faker->unique()->year,
|
||||
];
|
||||
}
|
||||
}
|
@@ -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");
|
||||
}
|
||||
};
|
@@ -5,7 +5,9 @@ declare(strict_types=1);
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Illuminate\Support\Carbon;
|
||||
use Toby\Models\User;
|
||||
use Toby\Models\YearPeriod;
|
||||
|
||||
class DatabaseSeeder extends Seeder
|
||||
{
|
||||
@@ -15,5 +17,12 @@ class DatabaseSeeder extends Seeder
|
||||
User::factory([
|
||||
"email" => env("LOCAL_EMAIL_FOR_LOGIN_VIA_GOOGLE"),
|
||||
])->create();
|
||||
|
||||
YearPeriod::factory([
|
||||
"year" => Carbon::now()->year,
|
||||
])->create();
|
||||
YearPeriod::factory([
|
||||
"year" => Carbon::now()->year + 1,
|
||||
])->create();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user