char('id', 8)->primary(); $table->char('service_id', 8)->unique(); $table->text('note'); $table->timestamps(); }); } public function down() { Schema::dropIfExists('notes'); } };