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