https://github.com/blobmon/simplechan
上のサイトを一通り終えて、サイトに表示されるboard1 の名前を"Anime & Manga"変更しようと思ってデータベースに入った後に

simplech_db-# update boards set board='Anime & Manga', display_name='Anime & Manga' where board='board1' and display_name='Board 1';

と入力したのですが

ERROR: duplicate key value violates unique constraint "boards_pkey"

   

DETAIL: Key (board)=(Anime & Manga) already exists.

と表示されてできません。
また、一度消してやろうと思って

truncate table boards;

と入力したら

ERROR: cannot truncate a table referenced in a foreign key constraint
DETAIL: Table "posts" references "boards".
HINT: Truncate table "posts" at the same time, or use TRUNCATE ... CASCADE.

と表示されました。どうやったら、できますか?