string('created_ip_address')->nullable(); $table->string('last_ip_address')->nullable(); }); } public function down() { if (Schema::hasColumn('users', 'created_ip_address')) { Schema::table('users', function($table) { $table->dropColumn('created_ip_address'); $table->dropColumn('last_ip_address'); }); } } }