Use RelationshipType enum instead of raw string.

This commit is contained in:
Sam Rose 2023-10-25 16:38:14 +01:00
parent 2c5dd99da2
commit ef84e96f98
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
} from "@budibase/bbui"
import { getContext } from "svelte"
import { ValidColumnNameRegex } from "@budibase/shared-core"
import { FieldSubtype } from "@budibase/types"
import { FieldSubtype, RelationshipType } from "@budibase/types"
const { API, definition, rows } = getContext("grid")
@ -27,7 +27,7 @@
const migrateUserColumn = async () => {
let subtype = FieldSubtype.USERS
if (column.schema.relationshipType === "one-to-many") {
if (column.schema.relationshipType === RelationshipType.ONE_TO_MANY) {
subtype = FieldSubtype.USER
}