mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 03:15:41 +08:00
Replaced all NNN_StoreName.sql migration resources with a more readable, single-file-per-store
13 lines
213 B
Plaintext
13 lines
213 B
Plaintext
:VERSION 1
|
|
|
|
BEGIN;
|
|
|
|
CREATE TABLE Avatars (
|
|
PrincipalID CHAR(36) NOT NULL,
|
|
Name VARCHAR(32) NOT NULL,
|
|
Value VARCHAR(255) NOT NULL DEFAULT '',
|
|
PRIMARY KEY(PrincipalID, Name),
|
|
KEY(PrincipalID));
|
|
|
|
COMMIT;
|