feat(idp_table_relational): adding inital idp tables for relational repository

This commit is contained in:
Iraq Jaber
2025-07-27 12:13:35 +01:00
parent 13b772aa8c
commit 9fd4f6f2b5
19 changed files with 3154 additions and 52 deletions

View File

@@ -14,7 +14,7 @@ var _OrgStateIndex = [...]uint8{0, 6, 14}
const _OrgStateLowerName = "activeinactive"
func (i OrgState) String() string {
if i < 0 || i >= OrgState(len(_OrgStateIndex)-1) {
if i >= OrgState(len(_OrgStateIndex)-1) {
return fmt.Sprintf("OrgState(%d)", i)
}
return _OrgStateName[_OrgStateIndex[i]:_OrgStateIndex[i+1]]