1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-08 01:36:57 +02:00

- a bunch of bugfixes. :P

git-svn-id: file:///svn/phpbb/trunk@5678 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2006-03-21 19:23:34 +00:00
parent 44c60cff4d
commit 21de871aff
47 changed files with 200 additions and 119 deletions

View File

@@ -372,7 +372,6 @@ CREATE TABLE [phpbb_privmsgs] (
[message_text] [text] NULL ,
[message_edit_reason] [varchar] (100) NULL ,
[message_edit_user] [int] NOT NULL ,
[message_checksum] [varchar] (32) NOT NULL ,
[message_encoding] [varchar] (11) NOT NULL ,
[message_attachment] [int] NOT NULL ,
[bbcode_bitfield] [int] NOT NULL ,
@@ -772,7 +771,7 @@ CREATE TABLE [phpbb_users] (
[user_lang] [varchar] (30) NOT NULL ,
[user_timezone] [float] NOT NULL ,
[user_dst] [int] NOT NULL ,
[user_dateformat] [varchar] (15) NOT NULL ,
[user_dateformat] [varchar] (30) NOT NULL ,
[user_style] [int] NOT NULL ,
[user_rank] [int] NULL ,
[user_colour] [varchar] (6) NOT NULL ,
@@ -1587,6 +1586,7 @@ ALTER TABLE [phpbb_topics] WITH NOCHECK ADD
CONSTRAINT [DF_topics_topic_moved_id] DEFAULT (0) FOR [topic_moved_id],
CONSTRAINT [DF_topics_topic_bumped] DEFAULT (0) FOR [topic_bumped],
CONSTRAINT [DF_topics_topic_bumper] DEFAULT (0) FOR [topic_bumper],
CONSTRAINT [DF_topics_poll_title] DEFAULT ('') FOR [poll_title],
CONSTRAINT [DF_topics_poll_start] DEFAULT (0) FOR [poll_start],
CONSTRAINT [DF_topics_poll_length] DEFAULT (0) FOR [poll_length],
CONSTRAINT [DF_topics_poll_max_options] DEFAULT (1) FOR [poll_max_options],