From 87ab0632d8af79d5ff5ef912b1e9b2cac0ace396 Mon Sep 17 00:00:00 2001 From: Graham Eames Date: Fri, 6 Jan 2006 22:50:14 +0000 Subject: Removing an unused table from the schema git-svn-id: file:///svn/phpbb/trunk@5433 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install/schemas/postgres_schema.sql | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'phpBB/install/schemas/postgres_schema.sql') diff --git a/phpBB/install/schemas/postgres_schema.sql b/phpBB/install/schemas/postgres_schema.sql index 5f99762ed9..98c335644f 100644 --- a/phpBB/install/schemas/postgres_schema.sql +++ b/phpBB/install/schemas/postgres_schema.sql @@ -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; -- cgit v1.2.1