mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 11:25:39 +08:00
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;
|