From 6e7b3950d70b0dbe3b765d596adc534a6ca3a2a9 Mon Sep 17 00:00:00 2001 From: AlexRa Date: Thu, 6 May 2010 22:44:57 +0300 Subject: Migrations for SQLite converted to new format --- OpenSim/Data/SQLite/Resources/Avatar.migrations | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 OpenSim/Data/SQLite/Resources/Avatar.migrations (limited to 'OpenSim/Data/SQLite/Resources/Avatar.migrations') diff --git a/OpenSim/Data/SQLite/Resources/Avatar.migrations b/OpenSim/Data/SQLite/Resources/Avatar.migrations new file mode 100644 index 0000000..13b4196 --- /dev/null +++ b/OpenSim/Data/SQLite/Resources/Avatar.migrations @@ -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; -- cgit v1.1