Plumbs in attachment persistence and adds the tables. Currently MySQL only, no user functionality yet.
6 lines
177 B
PL/PgSQL
6 lines
177 B
PL/PgSQL
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;
|