Basic seeder, navigating to application page

This commit is contained in:
2025-03-28 14:39:36 +00:00
parent d21250ce66
commit 72b6231b8c
10 changed files with 146 additions and 27 deletions

View File

@@ -9,7 +9,7 @@ return new class extends Migration
{
public function up(): void
{
Schema::create('application', function (Blueprint $table) {
Schema::create('applications', function (Blueprint $table) {
$table->id();
$table->foreignIdFor(Organisation::class);
$table->string('name');
@@ -21,6 +21,6 @@ return new class extends Migration
public function down(): void
{
Schema::dropIfExists('application');
Schema::dropIfExists('applications');
}
};