string('prefix')->after('name')->nullable(); $table->string('first_name')->after('prefix')->nullable(); $table->string('middle_name')->after('first_name')->nullable(); $table->string('last_name')->after('middle_name')->nullable(); $table->text('address_line_2')->after('landmark')->nullable(); $table->string('zip_code')->after('address_line_2')->nullable(); $table->date('dob')->after('zip_code')->nullable(); }); DB::statement('ALTER TABLE contacts CHANGE landmark address_line_1 text;'); DB::statement('UPDATE contacts SET first_name=name;'); } /** * Reverse the migrations. * * @return void */ public function down() { } };