mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 20:05:33 +08:00
Migrations for SQLite converted to new format
This commit is contained in:
11
OpenSim/Data/SQLite/Resources/Avatar.migrations
Normal file
11
OpenSim/Data/SQLite/Resources/Avatar.migrations
Normal file
@@ -0,0 +1,11 @@
|
||||
:VERSION 1
|
||||
|
||||
BEGIN TRANSACTION;
|
||||
|
||||
CREATE TABLE Avatars (
|
||||
PrincipalID CHAR(36) NOT NULL,
|
||||
Name VARCHAR(32) NOT NULL,
|
||||
Value VARCHAR(255) NOT NULL DEFAULT '',
|
||||
PRIMARY KEY(PrincipalID, Name));
|
||||
|
||||
COMMIT;
|
||||
Reference in New Issue
Block a user