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

And the schema changes for the inactive user changes

git-svn-id: file:///svn/phpbb/trunk@6395 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Graham Eames
2006-09-23 12:39:48 +00:00
parent cbece78f7b
commit a5a9f16c0d
7 changed files with 68 additions and 54 deletions

View File

@@ -404,7 +404,7 @@ CREATE TABLE [phpbb_forums] (
[forum_name] [text] DEFAULT ('') NOT NULL ,
[forum_desc] [text] DEFAULT ('') NOT NULL ,
[forum_desc_bitfield] [varchar] (252) DEFAULT ('') NOT NULL ,
[forum_desc_options] [int] DEFAULT (0) NOT NULL ,
[forum_desc_options] [int] DEFAULT (7) NOT NULL ,
[forum_desc_uid] [varchar] (5) DEFAULT ('') NOT NULL ,
[forum_link] [varchar] (255) DEFAULT ('') NOT NULL ,
[forum_password] [varchar] (40) DEFAULT ('') NOT NULL ,
@@ -413,7 +413,7 @@ CREATE TABLE [phpbb_forums] (
[forum_rules] [text] DEFAULT ('') NOT NULL ,
[forum_rules_link] [varchar] (255) DEFAULT ('') NOT NULL ,
[forum_rules_bitfield] [varchar] (252) DEFAULT ('') NOT NULL ,
[forum_rules_options] [int] DEFAULT (0) NOT NULL ,
[forum_rules_options] [int] DEFAULT (7) NOT NULL ,
[forum_rules_uid] [varchar] (5) DEFAULT ('') NOT NULL ,
[forum_topics_per_page] [int] DEFAULT (0) NOT NULL ,
[forum_type] [int] DEFAULT (0) NOT NULL ,
@@ -521,7 +521,7 @@ CREATE TABLE [phpbb_groups] (
[group_name] [varchar] (252) DEFAULT ('') NOT NULL ,
[group_desc] [text] DEFAULT ('') NOT NULL ,
[group_desc_bitfield] [varchar] (252) DEFAULT ('') NOT NULL ,
[group_desc_options] [int] DEFAULT (0) NOT NULL ,
[group_desc_options] [int] DEFAULT (7) NOT NULL ,
[group_desc_uid] [varchar] (5) DEFAULT ('') NOT NULL ,
[group_display] [int] DEFAULT (0) NOT NULL ,
[group_avatar] [varchar] (255) DEFAULT ('') NOT NULL ,
@@ -1619,6 +1619,8 @@ CREATE TABLE [phpbb_users] (
[user_warnings] [int] DEFAULT (0) NOT NULL ,
[user_last_warning] [int] DEFAULT (0) NOT NULL ,
[user_login_attempts] [int] DEFAULT (0) NOT NULL ,
[user_inactive_reason] [int] DEFAULT (0) NOT NULL ,
[user_inactive_time] [int] DEFAULT (0) NOT NULL ,
[user_posts] [int] DEFAULT (0) NOT NULL ,
[user_lang] [varchar] (30) DEFAULT ('') NOT NULL ,
[user_timezone] [float] DEFAULT (0) NOT NULL ,