Fix mariadb?

This commit is contained in:
notCharles 2024-04-14 20:53:50 -04:00
parent 6118ed91fa
commit dc8d7aa3da

View File

@ -11,6 +11,10 @@ return new class extends Migration
*/
public function up(): void
{
Schema::table('nodes', function (Blueprint $table) {
$table->string('daemonBase', 191)->default(null)->change();
});
Schema::table('nodes', function (Blueprint $table) {
$table->renameColumn('daemonListen', 'daemon_listen');
$table->renameColumn('daemonBase', 'daemon_base');