An open API service indexing awesome lists of open source software.

https://github.com/eruvanos/composit-id-jpa

How to map an internationalized text in db
https://github.com/eruvanos/composit-id-jpa

Last synced: 9 months ago
JSON representation

How to map an internationalized text in db

Awesome Lists containing this project

README

          

# composit-id-jpa
How to map an internationalized text in db

Tables:
- create table NeedText (id bigint generated by default as identity (start with 1), TEXT_ID bigint, primary key (id))
- create table TEXT (id bigint not null, LOCALE varchar(255) not null, text varchar(255), primary key (id, LOCALE))