Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(schema) changes in uuid generation
This commit attempts to solve two problems: * When updating an entity without including the entity's uuid, the first if would generate an invalid uuid for it (the `if field.uuid ...` branch was not entered, so the `if field.type = "string"` was activated, filling the uuid with a `random_string` * When converting the old DAO schemas to the new DAO some string values can now be both ngx.null and "". So the auto-generation needs to take that into account and generate also when it encounters "".
- Loading branch information