create table widget_store_java.items (
  id integer unsigned not null auto_increment,
  title varchar(100) not null default '',
  description text not null default '',
  price float not null default 0,
  primary key (id)
)
engine = InnoDB;

show tables;
desc items;

