hasTable($tableName)) { $table = $schema->getTable($tableName); // JSON field to store onboarding question tree // Structure: {"start": "q1", "questions": [{id, text, answers: [{id, text, next}]}]} if (!$table->hasColumn('onboarding_questions')) { $table->addColumn('onboarding_questions', Types::TEXT, [ 'notnull' => false, ]); } } return $schema; } }