From f9fd426aca095f247b03a7bfaa0c1876c811aee6 Mon Sep 17 00:00:00 2001 From: Boy132 Date: Wed, 5 Jun 2024 08:47:11 +0200 Subject: [PATCH] change column type to string Co-authored-by: Lance Pioch --- .../2024_06_04_085042_add_daemon_sftp_alias_column_to_nodes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2024_06_04_085042_add_daemon_sftp_alias_column_to_nodes.php b/database/migrations/2024_06_04_085042_add_daemon_sftp_alias_column_to_nodes.php index e0e6e1786..b4310ac7d 100644 --- a/database/migrations/2024_06_04_085042_add_daemon_sftp_alias_column_to_nodes.php +++ b/database/migrations/2024_06_04_085042_add_daemon_sftp_alias_column_to_nodes.php @@ -12,7 +12,7 @@ return new class extends Migration public function up(): void { Schema::table('nodes', function (Blueprint $table) { - $table->text('daemon_sftp_alias')->nullable()->after('daemon_sftp'); + $table->string('daemon_sftp_alias')->nullable()->after('daemon_sftp'); }); }