summaryrefslogtreecommitdiff
path: root/admin
diff options
context:
space:
mode:
authorbitweaver.org <bitweaver@users.sourceforge.net>2006-01-31 20:18:56 +0000
committerbitweaver.org <bitweaver@users.sourceforge.net>2006-01-31 20:18:56 +0000
commit1b2c9ce687367798813bd53d53203c3fa402eb23 (patch)
tree05c45715860a82141db7aa1468f3454c1da3fe48 /admin
parent1003a4c06674da47c69485d5ab32183deb7841b7 (diff)
downloadnexus-1b2c9ce687367798813bd53d53203c3fa402eb23.tar.gz
nexus-1b2c9ce687367798813bd53d53203c3fa402eb23.tar.bz2
nexus-1b2c9ce687367798813bd53d53203c3fa402eb23.zip
massive table de-tikification. changed all tiki_ table prefixes with teh package_ name. have changed everything except liberty except kernel
Diffstat (limited to 'admin')
-rw-r--r--admin/schema_inc.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/admin/schema_inc.php b/admin/schema_inc.php
index f489e6a..c31f942 100644
--- a/admin/schema_inc.php
+++ b/admin/schema_inc.php
@@ -1,7 +1,7 @@
<?php
$tables = array(
-'tiki_nexus_plugins' => "
+'nexus_plugins' => "
plugin_guid C(16) PRIMARY,
plugin_type C(16) NOTNULL,
is_active C(1) NOTNULL DEFAULT 'y',
@@ -9,7 +9,7 @@ $tables = array(
maintainer_url C(250)
",
-'tiki_nexus_menus' => "
+'nexus_menus' => "
menu_id I4 AUTO PRIMARY,
plugin_guid C(16) NOTNULL,
title C(128),
@@ -18,7 +18,7 @@ $tables = array(
editable I4 DEFAULT 0
",
-'tiki_nexus_menu_items' => "
+'nexus_menu_items' => "
item_id I4 AUTO PRIMARY,
menu_id I4 DEFAULT 0,
parent_id I4,