aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas/oracle_schema.sql
diff options
context:
space:
mode:
authorBruno Ais <brunoaiss@gmail.com>2012-12-02 21:47:18 +0000
committerBruno Ais <brunoaiss@gmail.com>2012-12-05 16:39:29 +0000
commit9b018bd460376abce3f4fe9d8c11feef0c547b0d (patch)
tree466b1c6959cc07c89452fed57078a3997dd9829d /phpBB/install/schemas/oracle_schema.sql
parent4f947ebb47e4236c4bc3e2474eb49069d67d91e1 (diff)
downloadforums-9b018bd460376abce3f4fe9d8c11feef0c547b0d.tar
forums-9b018bd460376abce3f4fe9d8c11feef0c547b0d.tar.gz
forums-9b018bd460376abce3f4fe9d8c11feef0c547b0d.tar.bz2
forums-9b018bd460376abce3f4fe9d8c11feef0c547b0d.tar.xz
forums-9b018bd460376abce3f4fe9d8c11feef0c547b0d.zip
[ticket/11171] DB additions for these changes
Made the required changes to develop/create_schema_files.php and this is what resulted of that. PHPBB3-11171
Diffstat (limited to 'phpBB/install/schemas/oracle_schema.sql')
-rw-r--r--phpBB/install/schemas/oracle_schema.sql5
1 files changed, 4 insertions, 1 deletions
diff --git a/phpBB/install/schemas/oracle_schema.sql b/phpBB/install/schemas/oracle_schema.sql
index 91f906bc8b..671347ebe1 100644
--- a/phpBB/install/schemas/oracle_schema.sql
+++ b/phpBB/install/schemas/oracle_schema.sql
@@ -1216,8 +1216,11 @@ CREATE TABLE phpbb_reports (
report_time number(11) DEFAULT '0' NOT NULL,
report_text clob DEFAULT '' ,
reported_post_text clob DEFAULT '' ,
- reported_post_bitfield varchar2(255) DEFAULT '' ,
reported_post_uid varchar2(8) DEFAULT '' ,
+ reported_post_bitfield varchar2(255) DEFAULT '' ,
+ reported_post_enable_magic_url number(1) DEFAULT '1' NOT NULL,
+ reported_post_enable_smilies number(1) DEFAULT '1' NOT NULL,
+ reported_post_enable_bbcode number(1) DEFAULT '1' NOT NULL,
CONSTRAINT pk_phpbb_reports PRIMARY KEY (report_id)
)
/