QR Scanner

All varchar columns will have the option to use QR Scan

The column name can be anything you wish. Below, we are using ‘myqr’

You can add as many varchar columns as wish as well

Below, we add Column ‘myqr’ to serve as our QR scan field:

CREATE TABLE mytable (
id integer DEFAULT nextval('public.my_id_seq'::regclass) NOT NULL,
myqr character varying(200),
location point,
latlngalt json,
"timestamp" timestamp without time zone
);

QR values are stored as text in the database