uuid('id')->primary(); $table->string('type'); $table->morphs('notifiable'); $table->text('data'); $table->timestamp('read_at')->nullable(); $table->timestamps(); $table->tinyInteger("via_sms_times")->default(1); $table->timestamp("via_sms_at")->nullable(); $table->tinyInteger("via_wechat_times")->default(1); $table->timestamp("via_wechat_at")->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('notifications'); } }