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

Warning changes for the other schema files

git-svn-id: file:///svn/phpbb/trunk@5646 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Graham Eames
2006-03-17 21:02:32 +00:00
parent fb999487bc
commit f2cc5c093d
5 changed files with 106 additions and 8 deletions

View File

@@ -2,7 +2,6 @@
PostgreSQL Schema for phpBB 3.x - (c) phpBB Group, 2005
$Id$
@todo user_last_warning to users table and warnings table
*/
BEGIN;
@@ -1170,6 +1169,7 @@ CREATE TABLE phpbb_users (
user_lastpage varchar(100) DEFAULT '' NOT NULL,
user_last_confirm_key varchar(10) DEFAULT '' NOT NULL,
user_warnings INT2 DEFAULT '0' NOT NULL,
user_last_warning INT4 DEFAULT '0' NOT NULL,
user_login_attempts INT4 DEFAULT '0' NOT NULL,
user_posts INT4 DEFAULT '0' NOT NULL,
user_lang varchar(30) DEFAULT '' NOT NULL,
@@ -1235,6 +1235,18 @@ CREATE INDEX username_phpbb_users_index ON phpbb_users (username);
SELECT SETVAL('phpbb_users_user_id_seq',(select case when max(user_id)>0 then max(user_id)+1 else 1 end from phpbb_users));
/* Table: phpbb_warnings */
CREATE SEQUENCE phpbb_warnings_warning_id_seq;
CREATE TABLE phpbb_warnings (
warning_id INT4 DEFAULT nextval('phpbb_warnings_warning_id_seq'),
user_id INT4 DEFAULT '0' NOT NULL,
post_id INT4 DEFAULT '0' NOT NULL,
log_id INT4 DEFAULT '0' NOT NULL,
warning_time INT4 DEFAULT '0' NOT NULL,
PRIMARY KEY (warning_id)
);
/* Table: phpbb_words */
CREATE SEQUENCE phpbb_words_word_id_seq;