uuid('id')->primary(); $table->string('event_type'); $table->morphs('notifiable'); $table->string('icon')->nullable(); $table->string('type')->nullable(); $table->text('body')->nullable(); $table->mediumText('data'); $table->timestamp('read_at')->nullable(); $table->timestamps(); }); } public function down() { Schema::dropIfExists('rainlab_notify_notifications'); } }