修改message字段长度

This commit is contained in:
Easy 2022-01-19 12:02:10 +08:00
parent c65e41b227
commit 2b44e4d5b0

View File

@ -17,7 +17,7 @@ class CreatePushDeerMessagesTable extends Migration
$table->id(); $table->id();
$table->string('uid'); $table->string('uid');
$table->mediumText('text'); $table->mediumText('text');
$table->string('desp')->nullable(); $table->longText('desp');
$table->string('type')->default('markdown'); $table->string('type')->default('markdown');
$table->string('readkey'); $table->string('readkey');
$table->string('url')->nullable(); $table->string('url')->nullable();