diff options
| -rw-r--r-- | docs/achievement_reward_locale.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/achievement_reward_locale.md b/docs/achievement_reward_locale.md index 6d66338..3c58a6f 100644 --- a/docs/achievement_reward_locale.md +++ b/docs/achievement_reward_locale.md @@ -42,3 +42,10 @@ It is the text of the column `Subject` of the table `achievement_reward` ### Text It is the text of the column `Body` of the table `achievement_reward` + +### Example +```sql +DELETE FROM `achievement_reward_locale` WHERE `ID`=13 AND `Locale`="esES"; +INSERT INTO `achievement_reward_locale` (`ID`, `Locale`, `Subject`, `Text`) VALUES +(13, "esES", "Nivel 80", "Alcanza el nivel 80."); +``` |
