I'm using Django and Mysql in order to, for instance, display some news articles. These articles are in English and German. I would like to know what database organization is more efficient:
1 table made of the following fields:
Articles
- English_title (char field)
- English_body (char field)
- German_title (char field)
- German_body (char field)
- Picture (file field)
or
2 tables made of the following fields:
English articles
- English_title (char field)
- English_body (char field)
- Picture (file field)
German articles
- German_title (char field)
- German_body (char field)
It'll display English articles on a template and German ones in another one.