From 4649cdb11d7091b56ea0defacbbabb1bf8bdb974 Mon Sep 17 00:00:00 2001 From: soyoo Date: Tue, 17 Mar 2020 02:39:52 +0800 Subject: [PATCH] Update table.md (#79) --- doc/table.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/table.md b/doc/table.md index 2ee2313..813fcea 100644 --- a/doc/table.md +++ b/doc/table.md @@ -26,7 +26,7 @@ NUT_DECLARE_FIELD(type, property_name, read_method_name, write_method_name) | NUT_NOT_NULL(x) | The field *x* is not allowed to store NULL value | | NUT_LEN(x, len) | Max length of *x* is *len* in string types and in numeric typed field *x* will be store in *len* bytes | | NUT_DEFAULT_VALUE(x, def) | Default value of *x* is *def* | -| NUT_UNIQUE(x) | Field *x* is unique (Not imlemented yet!) | +| NUT_UNIQUE(x) | Field *x* is unique (Not implemented yet!) | | NUT_DISPLAY_NAME(field, name) | Sets display name for field (used in model creation | ## Sample table