id(); $table->string('uid'); $table->mediumText('text'); $table->string('desp')->nullable(); $table->string('type')->default('markdown'); $table->string('readkey'); $table->string('url')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('push_deer_messages'); } }