table('services', function (Blueprint $table) { $table->bigInteger('chart_of_account_id')->unsigned()->nullable(); }); } catch (\Throwable $th) { //throw $th; } } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('services', function (Blueprint $table) { $table->dropColumn('chart_of_account_id'); }); } }