First page
Back
Continue
Last page
Graphics
A new table
create table gadget (
id integer not null primary key,
type varchar(255) not null,
owner_id integer not null);
select * from gadget;