change desp to medium text type

This commit is contained in:
Easy 2022-01-09 18:10:27 +08:00
parent 6c4329a082
commit eec94f9f87

View File

@ -16,7 +16,7 @@ class CreatePushDeerMessagesTable extends Migration
Schema::create('push_deer_messages', function (Blueprint $table) { Schema::create('push_deer_messages', function (Blueprint $table) {
$table->id(); $table->id();
$table->string('uid'); $table->string('uid');
$table->string('text'); $table->mediumText('text');
$table->string('desp')->nullable(); $table->string('desp')->nullable();
$table->string('type')->default('markdown'); $table->string('type')->default('markdown');
$table->string('readkey'); $table->string('readkey');