Skip to content

Schema User Guide

Login

https://bi-form.item.com/schema

img.png

Creating a MySQL Table

Use the following template to create a form table. All form tables must end with _form. You can optionally add an index to enable quick search. Single-column indexes are supported.

sql
-- Example: accounting.wise_facility_tracking_number_list_form
CREATE TABLE wise_facility_tracking_number_list_form (
  id int NOT NULL AUTO_INCREMENT,
  createdby varchar(200) DEFAULT NULL,
  last_update_by varchar(200) DEFAULT NULL,
  createdtime timestamp DEFAULT NULL,
  last_update_time timestamp DEFAULT NULL,
  accgroup json DEFAULT NULL,
  PRIMARY KEY (id)
)

Creating, Editing, and Deleting Forms

Create a Form

Supports 2-level tags. All fields are required.

img_4.png

Edit a Form

The form_id field cannot be modified.

img_5.png

Delete a Form

Deletion is permanent and cannot be undone.

img_8.png

Designer — Configuring Field Types

Use the Designer to configure the type of each field control.

img_6.pngimg_7.png