Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
CREATE TABLE myinfo(id serial, Thing varchar(50), Description text);
NOTICE: CREATE TABLES will create implicit sequence 'myinfo_id_seq' for SERIAL column 'myinfo.id'
NOTICE: CREATE TABLE/UNIQUE will create implicit index 'myinfo_id_key' for table 'myinfo';
CREATE