You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 59 Next »

Filled Manually

description

Field TypeDescriptionData TypeLength or Example
Big Integer

It's a numeric field type used for the storage of the very huge numbers. Size of the data stored is eight bytes. In SimpleOne interface, it is displayed as an input field with a numeric value in it.

int8-9223372036854775808 ... 9223372036854775807
Char

This field type is used for storing symbolic data (for example, hash, ID, UUID, etc). Size of the data stored is 32 bytes. In SimpleOne interface, it is displayed as an input field with the symbolic value in it.

char

ru

en

Decimal????


Encrypted Password

This field type is used to provide secure password storage in the database, with the decoding ability (2-way encryption).

Before saving, password encodes basing on one of the encryption algorithm and a random string, Before usage, decoding performs.

varchar128 symbols
FloatThis field type implements a floating point number.float4
Html

This field type is implemented as rich text widget, It has various settings which are displayed as HTML tags in the database.

When this field is Read-Only, the data is displayed as HTML; otherwise, it is displayed as text able to edit and transform.

text
Integer

This is a numeric field type. Size of the stored data - four bytes.

int4-2147483648 ... +2147483647
Journal Input

This field type is used to operate with the comment widget for the intermediate data storage when the comments have been adding. It is implemented as a text-area with a placeholder of the field title.

Routinely, it stores NULL inside. When the comment is adding, the field value saving the following data to the sys_activities_stream_field table:

  • reference to the commented record;
  • reference to the table containing this field;
  • the comment itself;
  • commentator name (the user who has added the comment);
  • field name.

After the comment saving the field value becomes NULL again.

text
JsonThis field type is physically stored as a JSON.jsonb{   “name”:“John”,   “age”:30,   “cars”: {     “car1”:“Ford”,     “car2”:“BMW”,     “car3”:“Fiat”   }  }
Password

Displayed as an input field with password type.

varchar255 symbols
Phone

This field stores a phone number.

In SimpleOne interface, it is displayed as an input field with the phone number.

varchar15 symbols
Script

This field type is physically implemented as a lengthless text string.

In SimpleOne interface, it is displayed as a CodeMirror widget (JS component that provides ability of the code editing in the browser) .

text
Small Integer

This is numeric field type. Size of the data stored - two bytes. 

int2-32768 ... +32767
String

This field type is physically implemented as a string 255 symbols length.

In SimpleOne interface, it is displayed as a text input field,

varchar255 symbols
Text

This field type is physically implemented as a lengthless text string. The memory is allocated dynamically when processing the field.

In SimpleOne interface, it is displayed as a textarea.

textlengthless
Translated Text

This field type allows the same field to to display different content based on the user language. To learn more about this field type, please refer to the Translated Text field article.

varchar
URL

This field type is used to store URL.

varchar255 symbols

Choice-like Fields

description

Field TypeDescriptionData TypeLength or Example
Boolean

This field type implements binary logic (True or False, 1 or 0).

In SimpleOne interface, it is displayed as a checkbox. You can change its default value to TRUE or FALSE by checking or unchecking it.

boolean

true

false

Choice

This field type implements the functionality of the choices.

In SimpleOne interface, it is displayed as a drop-down list.

For this, supporting fields in the sys_db_column column were implemented. Configuration settings of the items to be selected are located in the sys_choice table. Various types of Choices are available (they vary by Choice Type setting on the column creation form):

  • 'None';
  • Drop-down with 'None';
  • Drop-down without 'None' (must specify a default value).

When creating a column you can specify Choice Table and Choice Column. In this case, the Choice Column values will be the options for the values of the specified table in the Choice Table.

varchar80 symbols
Color

This field type is intended to keep and share information about the system color or the color of the interface element. This field type is used, for example, in the Rule Styles.

varchar40 symbols
Conditions

This field type is used to build AND/OR filters.

In SimpleOne interface, it is displayed as a filter configuration widget. It stores JSON condition inside.

text
Date

This field type stores the date in the following format: YYYY-MM-DD to within 1 day and without specifying the time of the day. Size of the data stored is four bytes.

dateYYYY-MM-DD
Date/Time

This field type stores inside the timestamp measured in seconds. It shows how many seconds have been passed since 00:00:00 UTC 01 Jan 1970 (also known as Unix time or POSIX time).

In SimpleOne interface, it is displayed as an input field with a date and time picker.

timestamp

YYYY-MM-DD HH:MM:SS

Days of week????


Document ID

This field type is used to store various ID. Physically they are stored as UUID.

UUID is written as a sequence of hex numbers in lowercase, divided by a minus sign into several groups like this:

  • Eight-digit group;
  • Three groups of four digits each;
  • 12-digit group.

It is 32 digits and 128 bits total.

You can see it on the record create/edit page. It is displayed as a text input field + dictionary button. When pressed, then modal with two fields are shown:

  • drop-down list with the tables;
  • field with a dictionary with the ability to select a table entry.
uuid

УМЕСТИТЬ ПРИМЕР:

00000000-

0040-

0000-0000-000000000008

Image

This field type is used to store uploaded image files.

In SimpleOne interface, it is displayed as a file upload modal window.

varchar
List

This field type is physically implemented as a lengthless text string. It stores ID's of the records of the specified table, comma-separated. It is displayed as a list of record values (which are the references to the record edit page). It provides you the functionality of the adding, previewing, and deleting records.

textlengthless
Reference

This field type works like external key and stores the ID of the record of the specified table. This table must be specified in the Reference ID. It is physically stored as Big Integer.



Time

This field type is used for time storage. Timezone is not taken into account. The date is not stored. Size of the stored data - eight bytes. 

timeHH:MM:SS








  • No labels