id(); $table->string('cnpj')->unique(); $table->string('nome'); $table->json('endereco'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('escolas'); } };