mirror of
https://github.com/evennia/evennia.git
synced 2026-03-22 15:56:30 +01:00
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:
parent
26a354204c
commit
3292405fcb
7 changed files with 38 additions and 1 deletions
5
apps/config/sql/configvalue.sql
Normal file
5
apps/config/sql/configvalue.sql
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
INSERT INTO "config_configvalue" VALUES(0,'site_name','Evennia Test Site');
|
||||
INSERT INTO "config_configvalue" VALUES(1,'site_port','4000');
|
||||
INSERT INTO "config_configvalue" VALUES(2,'player_dbnum_start','2');
|
||||
INSERT INTO "config_configvalue" VALUES(3,'money_name_plural','Credits');
|
||||
INSERT INTO "config_configvalue" VALUES(4,'money_name_singular','Credit');
|
||||
Loading…
Add table
Add a link
Reference in a new issue