create database freshtags; grant all on freshtags.* to 'delicious_sql'@'localhost'; use freshtags; create table bookmarks ( id int(255) not null auto_increment, tag varchar(255) not null, link varchar(255) not null, title varchar(255) not null, description varchar(255) not null, dc_date varchar(255) not null, primary key (id), index bookmarks_tag (tag), index bookmarks_link (link) );