CREATE TABLE "sessions" ( "id" UUID NOT NULL, PRIMARY KEY("id"), "issued_at" timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, "expires_at" timestamp NOT NULL, "authenticated_at" timestamp NOT NULL, "identity_id" UUID NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, CONSTRAINT "sessions_identities_id_fk" FOREIGN KEY ("identity_id") REFERENCES "identities" ("id") ON DELETE cascade );COMMIT TRANSACTION;BEGIN TRANSACTION;