mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 01:35:46 +08:00
Plumbs in attachment persistence and adds the tables. Currently MySQL only, no user functionality yet.
This commit is contained in:
5
OpenSim/Data/SQLite/Resources/005_UserStore.sql
Normal file
5
OpenSim/Data/SQLite/Resources/005_UserStore.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
BEGIN;
|
||||
|
||||
CREATE TABLE `avatarattachments` (`UUID` char(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000', `attachpoint` int(11) NOT NULL DEFAULT 0, `item` char(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000', `asset` char(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000');
|
||||
|
||||
COMMIT;
|
||||
Reference in New Issue
Block a user