1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-19 06:51:33 +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

@@ -805,13 +805,6 @@ CREATE TABLE phpbb_users (
user_newpasswd VARCHAR(32) NOT NULL
);;
# phpbb_users_passwd
CREATE TABLE phpbb_users_passwd (
user_id INTEGER NOT NULL,
passwd_time INTEGER NOT NULL,
passwd VARCHAR(32) NOT NULL
);;
# phpbb_words
CREATE TABLE phpbb_words (
word_id INTEGER NOT NULL,
@@ -1466,16 +1459,6 @@ ON phpbb_sessions_keys(
last_login
);;
ALTER TABLE phpbb_users_passwd
ADD PRIMARY KEY (
user_id
);;
CREATE INDEX passwd_time83
ON phpbb_users_passwd(
passwd_time
);;
CREATE GENERATOR G_phpbb_attachmentsattach_idGen;;
SET GENERATOR G_phpbb_attachmentsattach_idGen TO 0;;