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

Removing an unused table from the schema

git-svn-id: file:///svn/phpbb/trunk@5433 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Graham Eames
2006-01-06 22:50:14 +00:00
parent 0dfa526665
commit 87ab0632d8
7 changed files with 0 additions and 83 deletions

View File

@@ -1228,16 +1228,6 @@ 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_users_passwd */
CREATE TABLE phpbb_users_passwd (
user_id INT4 DEFAULT '0' NOT NULL,
passwd_time INT4 DEFAULT '0' NOT NULL,
passwd varchar(32) DEFAULT '' NOT NULL,
PRIMARY KEY (user_id)
);
CREATE INDEX passwd_time_phpbb_users_passwd_index ON phpbb_users_passwd (passwd_time);
/* Table: phpbb_words */
CREATE SEQUENCE phpbb_words_word_id_seq;