id(); $table->timestamps(); $table->string('name'); $table->string('slug'); $table->text('description'); $table->string('image_url'); $table->jsonb('structure')->default(new Expression("(JSON_OBJECT())")); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('templates'); } };