text('ip_alias')->nullable()->after('ip'); }); $allocations = DB::select('SELECT id, ip FROM allocations'); foreach ($allocations as $allocation) { DB::update( 'UPDATE allocations SET ip_alias = :ip WHERE id = :id', [ 'ip' => $allocation->ip, 'id' => $allocation->id, ] ); } } /** * Reverse the migrations. */ public function down() { Schema::table('allocations', function (Blueprint $table) { $table->dropColumn('ip_alias'); }); } }