uuid('id'); $table->string('title')->nullable(); $table->text('content')->nullable(); $table->json('attachment')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('notes'); } }