id(); $table->foreignId('user_id'); $table->foreignId('art_id'); $table->text('note'); $table->timestamps(); }); } } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('notes'); } };