use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateProfilesTable extends Migration { public function up() { Schema::create('profiles', function (Blueprint $table) { $table->id(); $table->foreignId('user_id')->constrained()->onDelete('cascade'); $table->string('business_name'); $table->string('business_address_line1'); $table->string('business_address_line2')->nullable(); $table->string('city'); $table->string('state'); $table->string('zip_code'); $table->string('country')->default('US'); $table->string('phone_number'); $table->text('incorporation_details')->nullable(); $table->timestamps(); }); } public function down() { Schema::dropIfExists('profiles'); } }