suppliers_id int default(0) not_null comment(FK to suppliers table - supplier identifier)
languages_id int default(0) not_null comment(FK to languages table - language for this translation)
suppliers_url varchar(255) comment(Supplier website URL for this language)
url_clicked int(5) default(0) not_null comment(Click count for supplier URL tracking)
date_last_click datetime comment(Timestamp of last click on supplier URL)
--
primary suppliers_id languages_id
##
engine innodb
character_set utf8mb4
collate utf8mb4_unicode_ci