Very preliminary user admin update

git-svn-id: file:///svn/phpbb/trunk@4642 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2003-11-05 18:29:02 +00:00
parent f265316c29
commit 8ad641bd17
2 changed files with 666 additions and 239 deletions

File diff suppressed because it is too large Load diff

View file

@ -757,6 +757,16 @@ CREATE TABLE phpbb_users (
KEY user_birthday (user_birthday(6)) KEY user_birthday (user_birthday(6))
); );
# Table: 'phpbb_users_notes'
CREATE TABLE phpbb_users_notes (
user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
reporter_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
report_date int(11) DEFAULT '0' NOT NULL,
report_log varchar(255) DEFAULT '' NOT NULL,
report_text text DEFAULT '' NOT NULL,
KEY user_id (user_id,reporter_id)
);
# Table: 'phpbb_words' # Table: 'phpbb_words'
CREATE TABLE phpbb_words ( CREATE TABLE phpbb_words (
word_id mediumint(8) UNSIGNED NOT NULL auto_increment, word_id mediumint(8) UNSIGNED NOT NULL auto_increment,