1
0
mirror of https://github.com/sismics/docs.git synced 2025-12-18 12:11:40 +00:00

#179: default language (api)

This commit is contained in:
Benjamin Gamard
2018-02-22 12:57:33 +01:00
parent 66cd4abd8b
commit 9a9e86829e
8 changed files with 70 additions and 4 deletions

View File

@@ -20,6 +20,11 @@ public enum ConfigType {
*/
GUEST_LOGIN,
/**
* Default language.
*/
DEFAULT_LANGUAGE,
/**
* SMTP server configuration.
*/

View File

@@ -1 +1 @@
db.version=15
db.version=16

View File

@@ -0,0 +1,2 @@
insert into T_CONFIG(CFG_ID_C, CFG_VALUE_C) values('DEFAULT_LANGUAGE', 'eng');
update T_CONFIG set CFG_VALUE_C = '16' where CFG_ID_C = 'DB_VERSION';