Recently I had to solve a problem of translation strings storing. You probably know this kind of job very well... The customer needs a feauture which provides a content language switching. The question is how can we solve this problem with and without SQLAlchemy?
Solution without SQLAlchemy
Consider the example database schema (PostgreSQL) below.
CREATE TABLE articles (
id_article SERIAL PRIMARY KEY,