diff --git a/Database/Migrations/2024_03_26_000000_fix_service_accounts_table.php b/Database/Migrations/2024_03_26_000000_fix_service_accounts_table.php new file mode 100644 index 0000000..2749271 --- /dev/null +++ b/Database/Migrations/2024_03_26_000000_fix_service_accounts_table.php @@ -0,0 +1,21 @@ +longText('password')->change(); + }); + } + + public function down() + { + Schema::table('service_accounts', function (Blueprint $table) { + $table->string('password')->change(); + }); + } +};