summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/moria.sql11
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/moria.sql b/docs/moria.sql
index 271d2b6..cbe0a7a 100644
--- a/docs/moria.sql
+++ b/docs/moria.sql
@@ -81,5 +81,16 @@ description VARCHAR(250),
PRIMARY KEY (job_id)
) TYPE=MyISAM;
+-- by Blackace
+DROP TABLE IF EXISTS sessions;
+CREATE TABLE sessions (
+ sessionid varchar(255) character set utf8 collate utf8_bin NOT NULL default '',
+ expiration int(10) unsigned NOT NULL default '0',
+ data text,
+ PRIMARY KEY (sessionid)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+drop table if exists user_preferences;
+
grant all on moria.* to hobbit identified by 'hobbitpassword';
grant all on moria.* to hobbit@localhost identified by 'hobbitpassword';