[DRAFT]This page is not published. Only visible in development mode.
Tables
Tables store your application state. Define columns with typed fields, insert data, and query it with RQL.
Create a Table
$ Create Table
Each column has a name and a type. Supported types include int4, utf8, bool, float8, and more.
Auto Increment
$ Auto Increment
Use WITH { auto_increment } to let the database assign IDs automatically.
