From 90e7807c5b0d4e6fd227d4da8dbc371512c5fa40 Mon Sep 17 00:00:00 2001 From: Dave MacLeod <56599343+Dhghomon@users.noreply.github.com> Date: Fri, 20 Dec 2024 13:32:12 +0900 Subject: [PATCH] Typo --- src/content/doc-surrealql/statements/define/table.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/doc-surrealql/statements/define/table.mdx b/src/content/doc-surrealql/statements/define/table.mdx index d188124bd..c5ea5b23b 100644 --- a/src/content/doc-surrealql/statements/define/table.mdx +++ b/src/content/doc-surrealql/statements/define/table.mdx @@ -11,7 +11,7 @@ import Since from '@components/shared/Since.astro' The `DEFINE TABLE` statement allows you to declare your table by name, enabling you to apply strict controls to a table's schema by making it `SCHEMAFULL`, create a foreign table view, and set permissions specifying what operations can be performed on the table. > [!NOTE] -> The fields of a table are not defined using `DEFINE FIELD`, but via individual [`DEFINE FIELD`](/docs/surrealql/statements/define/field) statements. +> The fields of a table are not defined using `DEFINE TABLE`, but via individual [`DEFINE FIELD`](/docs/surrealql/statements/define/field) statements. ## Requirements