From 7eee52fff321c1ba06bf321209cd2beb211fd6b3 Mon Sep 17 00:00:00 2001 From: Bart van Bragt Date: Sat, 24 Nov 2001 17:17:32 +0000 Subject: Finally moved the bbcode_uid from posts to posts_text, DON'T FORGET TO RUN THE CONVERT SCRIPT IN /develop/ !! git-svn-id: file:///svn/phpbb/trunk@1436 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/db/schemas/oracle_schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phpBB/db/schemas/oracle_schema.sql') diff --git a/phpBB/db/schemas/oracle_schema.sql b/phpBB/db/schemas/oracle_schema.sql index cbfc0e3139..99c10e0c37 100644 --- a/phpBB/db/schemas/oracle_schema.sql +++ b/phpBB/db/schemas/oracle_schema.sql @@ -198,7 +198,6 @@ CREATE TABLE phpbb_posts ( enable_html number(4) DEFAULT '0' NOT NULL, enable_smilies number(4) DEFAULT '1' NOT NULL, enable_sig number(4) DEFAULT '1' NOT NULL, - bbcode_uid varchar(10) DEFAULT '', post_edit_time number(11), post_edit_count number(4) DEFAULT '0' NOT NULL, CONSTRAINT phpbb_posts_pkey PRIMARY KEY (post_id) @@ -214,6 +213,7 @@ CREATE INDEX topic_id_phpbb_posts_index ON phpbb_posts (topic_id); -------------------------------------------------------- */ CREATE TABLE phpbb_posts_text ( post_id number(4) DEFAULT '0' NOT NULL, + bbcode_uid varchar(10) DEFAULT '', post_subject varchar(255), post_text varchar(2000), CONSTRAINT phpbb_posts_text_pkey PRIMARY KEY (post_id) -- cgit v1.2.1