olegbc1
(OlegBC)
5 Septiembre, 2019 21:29
1
Quiero armar una lista de los enlaces externos más clicados que tenemos en nuestro foro. ¿Qué tabla/columna en la base de datos de Discourse tiene el recuento del que puedo extraer? ¡Gracias!
Remah
(Just another happy Discourse user)
6 Septiembre, 2019 10:47
2
Busqué “click count” y encontré esta consulta para los clics salientes más clicados:
I believe what you’re interested in is the topic_links table (in /db/structure.sql)
CREATE TABLE topic_links (
id integer NOT NULL,
topic_id integer NOT NULL,
post_id integer,
user_id integer NOT NULL,
url character varying(500) NOT NULL,
domain character varying(100) NOT NULL,
internal boolean DEFAULT false NOT NULL,
link_topic_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
reflection boo…
olegbc1
(OlegBC)
6 Septiembre, 2019 16:02
3
¡Eso es todo! Muchas gracias