From d4b0ebf215762591d406a497384f1aa2da77a65b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hitalo=20de=20Jesus=20do=20Ros=C3=A1rio=20Souza?= <63821277+enghitalo@users.noreply.github.com> Date: Sat, 9 Jul 2022 08:04:35 -0300 Subject: [PATCH] doc: clear the explanation to 'sql: type' (#14915) --- vlib/orm/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/orm/README.md b/vlib/orm/README.md index 5cfa1fd076..b19ee4331e 100644 --- a/vlib/orm/README.md +++ b/vlib/orm/README.md @@ -12,7 +12,7 @@ - `[unique]` sets the field as unique - `[unique: 'foo']` adds the field to a unique group - `[skip]` field will be skipped -- `[sql: type]` sets the type which is used in sql (special type `serial`) +- `[sql: type]` where `type` is a V type such as `int` or `f64`, or special type `serial` - `[sql: 'name']` sets a custom column name for the field ## Usage