id(); $table->string('user_id'); $table->integer('barang_id'); $table->text('message'); $table->enum('read', ['1', '0']); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('notifikasi'); } };