-- -- This SQL script generated on Sat Apr 02 2005 at 12:30:05.215 -- ---------------------------------------------------------------------- -- Entity: Publisher -- A book publisher - A simple entity with no relationships. ---------------------------------------------------------------------- drop table publisher; create table publisher ( publisher_id integer not null, name varchar(80), constraint pk_publisher primary key (publisher_id) ); grant all on publisher to public;