14 lines
335 B
TypeScript
14 lines
335 B
TypeScript
|
import {
|
||
|
BBReferenceFieldSubType,
|
||
|
FieldSchema,
|
||
|
FieldType,
|
||
|
} from "@budibase/types"
|
||
|
|
||
|
export function isDeprecatedSingleUserColumn(schema: FieldSchema) {
|
||
|
const result =
|
||
|
schema.type === FieldType.BB_REFERENCE &&
|
||
|
schema.subtype === BBReferenceFieldSubType.USER &&
|
||
|
schema.constraints?.type !== "array"
|
||
|
return result
|
||
|
}
|