mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-04 15:57:45 +02:00
Very preliminary user admin update
git-svn-id: file:///svn/phpbb/trunk@4642 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -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,
|
||||||
|
Reference in New Issue
Block a user