uuid('id')->primary(); $table->string("role_from",30); $table->string("role_to",30); $table->uuid('userid'); $table->text("message"); $table->text("url"); $table->boolean("is_read"); $table->string("jenis", 50); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('notifikasi'); } }