From 60016a61e9892f362f6f3264547cd4cbed3c749f Mon Sep 17 00:00:00 2001 From: kostasb Date: Mon, 12 Aug 2024 16:12:52 +0300 Subject: [PATCH] fix file array --- 030-Data-types/030-data-model.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/030-Data-types/030-data-model.mdx b/030-Data-types/030-data-model.mdx index f11eae26..5a9aaa71 100644 --- a/030-Data-types/030-data-model.mdx +++ b/030-Data-types/030-data-model.mdx @@ -7,7 +7,7 @@ slug: concepts/data-model published: true --- -Xata builds on top of Postgres and thus supports the [default data types](https://www.postgresql.org/docs/current/datatype.html) inherit in that platform. Xata additionally adds to that list with unique types such as `xata_file`, `filearray` and `vector` to handle platform features like [file attachements](/docs/sdk/file-attachments) and [vector searching](/docs/sdk/vector-search). In addition, there are some added types to simplify validation of common types like `email` (deprecated) and `text[]` (`multiple`). Usage of these types is ultimately optional if you wish to use Xata only as a Postgres host. If you do decide to utilize them (which is the default way Xata operates through our UI), it is required that you interact with these types through the Xata SDKs. +Xata builds on top of Postgres and thus supports the [default data types](https://www.postgresql.org/docs/current/datatype.html) inherit in that platform. Xata additionally adds to that list with unique types such as `xata_file`, `xata_file_array` and `vector` to handle platform features like [file attachements](/docs/sdk/file-attachments) and [vector searching](/docs/sdk/vector-search). In addition, there are some added types to simplify validation of common types like `email` (deprecated) and `text[]` (`multiple`). Usage of these types is ultimately optional if you wish to use Xata only as a Postgres host. If you do decide to utilize them (which is the default way Xata operates through our UI), it is required that you interact with these types through the Xata SDKs. ## Xata specific data types