id(); $table->uuid('uuid')->unique(); $table->string("title"); $table->text("html"); $table->json("json"); $table->unsignedBigInteger("document_state_id"); $table->unsignedBigInteger("user_id"); $table->timestamps(); $table->foreign("user_id")->references("id")->on("users"); $table->foreign("document_state_id")->references("id")->on("document_states"); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('documents'); } };