CREATE TEMPORARY TABLE "legs" (
"id" serial,
"name" varchar,
"created_at" timestamp,
"updated_at" timestamp,
PRIMARY KEY(id)
);