View source: R/r6_DBTable_v9.R
validator_field_types_blank | R Documentation |
A pass-through validator that accepts any field types without validation. This is useful as a placeholder when no specific field type validation is needed.
validator_field_types_blank(db_field_types)
db_field_types |
A named character vector of database field types |
Always returns TRUE
# This validator always returns TRUE regardless of input
field_types <- c("id" = "INTEGER", "name" = "TEXT", "date" = "DATE")
validator_field_types_blank(field_types)
# Works with any field types
other_types <- c("value" = "DOUBLE", "status" = "BOOLEAN")
validator_field_types_blank(other_types)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.