create database tropy; grant all on tropy.* to nobody@localhost identified by 'nobody'; create table entry ( id char(32) primary key, title varchar(255) not null, body text, timestamp timestamp );