From dd896aa5a49146daced69fd313627634912dbdcc Mon Sep 17 00:00:00 2001 From: shanec Date: Sat, 30 Mar 2024 22:14:33 -0400 Subject: [PATCH] init --- ...3_26_000000_fix_service_accounts_table.php | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Database/Migrations/2024_03_26_000000_fix_service_accounts_table.php 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(); + }); + } +};