Added rest of files

This commit is contained in:
Shaun Collins
2026-03-04 16:35:15 +00:00
committed by shaun collins
parent 646041230b
commit 09c4bd02ff
160 changed files with 19001 additions and 0 deletions
@@ -0,0 +1,24 @@
<?php
use App\Models\Faq;
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(Faq::tableName(), function (Blueprint $table) {
$table->id();
$table->string('question');
$table->string('answer');
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists(Faq::tableName());
}
};