Avatar Attachment persistence!! Patch #9168 (Mantis #1171)

Plumbs in attachment persistence and adds the tables. Currently MySQL
only, no user functionality yet.
This commit is contained in:
Melanie Thielker
2008-08-18 17:22:36 +00:00
parent ae3a1dd9a2
commit 05506cff49
5 changed files with 187 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
BEGIN;
CREATE TABLE `avatarattachments` (`UUID` char(36) NOT NULL, `attachpoint` int(11) NOT NULL, `item` char(36) NOT NULL, `asset` char(36) NOT NULL) ENGINE=InnoDB;
COMMIT;