CREATE TEMPORARY TABLE "foots" (
"id" serial,
"leg_id" int,
"n_toes" int,
"created_at" timestamp,
"updated_at" timestamp,
PRIMARY KEY(id)
);