initial commit

This commit is contained in:
Edward Tirado Jr 2026-02-18 00:15:02 -06:00
commit d96b74e6c1
88 changed files with 15238 additions and 0 deletions

View file

@ -0,0 +1,33 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('profiles', function (Blueprint $table) {
$table->id();
$table->foreignId('user_id')->constrained()->cascadeOnDelete();
$table->string('first_name')->nullable();
$table->string('last_name')->nullable();
$table->string('location')->nullable();
$table->string('bio')->nullable();
$table->string('profile_image')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('profiles');
}
};