aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas/oracle_schema.sql
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2005-11-08 19:24:19 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2005-11-08 19:24:19 +0000
commit8a965db7aa17af5db4ea6ab7c970cb2a5d21bc86 (patch)
tree69e99e4a509fc5ae5f6b7a3f1f4e4a4d3a7069d1 /phpBB/install/schemas/oracle_schema.sql
parent183e968ce72ff30fc43914738fcdb6e1eb90705e (diff)
downloadforums-8a965db7aa17af5db4ea6ab7c970cb2a5d21bc86.tar
forums-8a965db7aa17af5db4ea6ab7c970cb2a5d21bc86.tar.gz
forums-8a965db7aa17af5db4ea6ab7c970cb2a5d21bc86.tar.bz2
forums-8a965db7aa17af5db4ea6ab7c970cb2a5d21bc86.tar.xz
forums-8a965db7aa17af5db4ea6ab7c970cb2a5d21bc86.zip
- add module_display to modules table (for modes executed but not displayed)
- correctly assign $id variable for modules (name for modules and id for categories) git-svn-id: file:///svn/phpbb/trunk@5295 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/schemas/oracle_schema.sql')
-rw-r--r--phpBB/install/schemas/oracle_schema.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/install/schemas/oracle_schema.sql b/phpBB/install/schemas/oracle_schema.sql
index 5b9f14baea..2e281a3d65 100644
--- a/phpBB/install/schemas/oracle_schema.sql
+++ b/phpBB/install/schemas/oracle_schema.sql
@@ -700,6 +700,7 @@ CREATE INDEX forum_id03 on phpbb_moderator_cache (forum_id)
CREATE TABLE phpbb_modules (
module_id number(8) NOT NULL,
module_enabled number(1) DEFAULT '1' NOT NULL,
+ module_display number(1) DEFAULT '1' NOT NULL,
module_name varchar2(20) DEFAULT '' NOT NULL,
module_class varchar2(4) DEFAULT '' NOT NULL,
parent_id number(5) DEFAULT '0' NOT NULL,