increments('id'); $table->integer('client_id')->nullable(); $table->string('slug', 255)->nullable(); $table->string('name', 255)->nullable(); $table->string('phone', 100)->nullable(); $table->text('address_line1')->nullable(); $table->text('address_line2')->nullable(); $table->string('postal_code', 100)->nullable(); $table->string('district', 100)->nullable(); $table->string('state', 100)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('addresses'); } }