fix(migrations): articles.description/keywords to text for sablog legacy data
Build and Deploy / verify (push) Successful in 57s
Build and Deploy / deploy (push) Successful in 26s

This commit is contained in:
2026-09-07 19:40:34 +00:00
parent c52f215c1c
commit 7a2b07ca4d
@@ -23,8 +23,8 @@ return new class extends Migration
$table->string('title');
$table->longText('content');
$table->string('content_format', 16)->default('html');
$table->string('description')->nullable();
$table->string('keywords')->nullable();
$table->text('description')->nullable();
$table->text('keywords')->nullable();
$table->timestamp('published_at')->nullable();
$table->unsignedBigInteger('views')->default(0);
$table->unsignedInteger('comments_count')->default(0);