This commit is contained in:
shanec 2024-03-30 22:14:33 -04:00
parent 1bf67eef22
commit dd896aa5a4

View file

@ -0,0 +1,21 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
public function up()
{
Schema::table('service_accounts', function (Blueprint $table) {
$table->longText('password')->change();
});
}
public function down()
{
Schema::table('service_accounts', function (Blueprint $table) {
$table->string('password')->change();
});
}
};