mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
Very preliminary user admin update
git-svn-id: file:///svn/phpbb/trunk@4642 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
f265316c29
commit
8ad641bd17
2 changed files with 666 additions and 239 deletions
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,
|
||||||
|
|
Loading…
Add table
Reference in a new issue