aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources/IM_Store.migrations (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Changed table 'im_offline' to use UTF8 characters. This fixes a problem with ↵Oren Hurvitz2014-04-231-1/+9
| | | | | | | | | | | | | | | | Offline IM V2 (only relevant to MySQL). This fixes http://opensimulator.org/mantis/view.php?id=7123 Users that use MySQL should change their MySQL configuration to support UTF8. In the config file /etc/my.cnf (Linux) or my.ini (Windows), add these settings: [mysqld] character-set-server=utf8 [client] default-character-set=utf8 And then restart MySQL (on Linux: "sudo service mysqld restart").
* In the offline message table, store the sender.Oren Hurvitz2014-01-161-1/+11
| | | | This data is useful for preventing abuse (e.g., someone who sends too many messages), or for deleting message if their sender has been deleted.
* Offline IM: moved the Data and MySQL bits to the corresponding places in ↵Diva Canto2013-02-191-0/+24
core, so that it will be easier to plugin a SQLite backend, if anyone is interested in doing that.