mediumInteger('assigned_to')->unsigned()->nullable()->after('port'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('allocations', function (Blueprint $table) { $table->dropColumn('assigned_to'); }); } }