-
Notifications
You must be signed in to change notification settings - Fork 15
Column
Ujjwal Gupta edited this page Oct 30, 2018
·
2 revisions
A column has following options -
- AutoIncrement
- PrimaryKey
- Default
- NotNull
- DisableSearch
- DataType - string,number,object,boolean,array,datetime
e.g -
DEFINE TABLE Person(
Id PRIMARYKEY AUTOINCREMENT NUMBER,
Name NOTNULL STRING,
Address STRING,
COUNTRY STRING DEFAULT 'India'
)