Migrations for SQLite converted to new format

This commit is contained in:
AlexRa
2010-05-06 22:44:57 +03:00
parent ee713cb253
commit 1ad12851d0
46 changed files with 828 additions and 709 deletions

View 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;