CREATE TEMPORARY TABLE "books" (
  "id" serial,
  "name" varchar,
  "created_at" timestamp,
  "updated_at" timestamp
);