id(); $table->unsignedBigInteger('user_id'); $table->string('address_line_1'); $table->string('address_line_2')->nullable(); $table->string('city'); $table->string('postal_code'); $table->string('state'); $table->string('country'); $table->unsignedTinyInteger('type'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('addresses'); } };