olegbc1
(OlegBC)
5 سبتمبر 2019، 9:29م
1
أرغب في إعداد قائمة بأكثر الروابط الخارجية نقراً الموجودة على منتدانا. أي جدول/عمود في قاعدة بيانات discourse يحتوي على العدد الذي يمكنني استخراجه؟ شكرًا!
Remah
(Just another happy Discourse user)
6 سبتمبر 2019، 10:47ص
2
لقد بحثت عن “عدد النقرات” ووجدت هذا الاستعلام لأكثر النقرات الخارجية التي تم النقر عليها:
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 سبتمبر 2019، 4:02م
3
هذا كل شيء! شكرًا جزيلاً لك