diff --git a/src/schemas/Organization.ts b/src/schemas/Organization.ts index 5bbbf9aeb..15e85d47f 100644 --- a/src/schemas/Organization.ts +++ b/src/schemas/Organization.ts @@ -50,6 +50,7 @@ export interface OrganizationSchema { py: string staffTypes: string[] role: Role + isBindDD: boolean } const Schema: SchemaDef = { @@ -76,7 +77,8 @@ const Schema: SchemaDef = { projectIds: { type: RDBType.LITERAL_ARRAY }, py: { type: RDBType.STRING }, role: { type: RDBType.OBJECT }, - staffTypes: { type: RDBType.OBJECT } + staffTypes: { type: RDBType.OBJECT }, + isBindDD: { type: RDBType.BOOLEAN } } schemaColl.add({ name: 'Organization', schema: Schema })