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'); }); }