Adding initial data via Django's syncdb facility. We will no longer distribute a SQLite DB in the near future in favor of this cross-platform alternative. Also in this commit is a crash fix for @dig with SQLite.

This commit is contained in:
Greg Taylor 2007-04-25 14:47:33 +00:00
parent 26a354204c
commit 3292405fcb
7 changed files with 38 additions and 1 deletions

View file

@ -0,0 +1,9 @@
INSERT INTO "config_commandalias" VALUES(1,'l','look');
INSERT INTO "config_commandalias" VALUES(2,'ex','examine');
INSERT INTO "config_commandalias" VALUES(3,'@dest','@destroy');
INSERT INTO "config_commandalias" VALUES(4,'@nuke','@destroy');
INSERT INTO "config_commandalias" VALUES(5,'sa','say');
INSERT INTO "config_commandalias" VALUES(6,'@tel','@teleport');
INSERT INTO "config_commandalias" VALUES(7,'i','inventory');
INSERT INTO "config_commandalias" VALUES(8,'inv','inventory');
INSERT INTO "config_commandalias" VALUES(9,'@desc','@description');