change column type to string

Co-authored-by: Lance Pioch <lancepioch@gmail.com>
This commit is contained in:
Boy132 2024-06-05 08:47:11 +02:00 committed by GitHub
parent 8f2261f6cd
commit f9fd426aca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,7 +12,7 @@ return new class extends Migration
public function up(): void public function up(): void
{ {
Schema::table('nodes', function (Blueprint $table) { Schema::table('nodes', function (Blueprint $table) {
$table->text('daemon_sftp_alias')->nullable()->after('daemon_sftp'); $table->string('daemon_sftp_alias')->nullable()->after('daemon_sftp');
}); });
} }