summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorPreston Cody <codeman@gentoo.org>2006-05-21 04:21:59 +0000
committerPreston Cody <codeman@gentoo.org>2006-05-21 04:21:59 +0000
commit1c783fd5694424cf2a84480321d6c563429c53de (patch)
tree070ee1c9fd890f1cf212e324b15323ff5367e9bc /docs
parentconvert admin page. this will obviously need (diff)
downloadscire-1c783fd5694424cf2a84480321d6c563429c53de.tar.gz
scire-1c783fd5694424cf2a84480321d6c563429c53de.tar.bz2
scire-1c783fd5694424cf2a84480321d6c563429c53de.zip
update to moria.sql. add a svnignore to the templates directory for templates_c
svn path=/; revision=74
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';