mirror of
https://github.com/ellite/Wallos.git
synced 2026-04-29 03:26:07 -04:00
4 lines
168 B
PHP
4 lines
168 B
PHP
<?php
|
|
// This migration corrects the Japanese language code from 'jp' to 'ja' in the user table.
|
|
|
|
$db->exec("UPDATE user SET language = 'ja' WHERE language = 'jp'"); |