engine = 'InnoDB'; $table->bigIncrements('id')->unsigned(); $table->date('date')->nullable(); $table->json('adresse')->default(new Expression('(JSON_OBJECT())')); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfexists('commandes'); } };