1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-05 16:27:38 +02:00

Fixed some problems ... maybe

git-svn-id: file:///svn/phpbb/trunk@493 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2001-06-14 16:06:45 +00:00
parent 01b5e67342
commit cabcc3584b
3 changed files with 10 additions and 10 deletions

View File

@@ -214,7 +214,7 @@ CREATE TABLE phpbb_posts (
forum_id int(10) DEFAULT '0' NOT NULL,
poster_id int(10) DEFAULT '0' NOT NULL,
post_time int(10) DEFAULT '0' NOT NULL,
poster_ip varchar(8) NOT NULL,
poster_ip char(8) NOT NULL,
post_username varchar(30),
bbcode_uid varchar(10) NOT NULL,
PRIMARY KEY (post_id),
@@ -251,8 +251,8 @@ CREATE TABLE phpbb_privmsgs (
privmsgs_from_userid int(11) DEFAULT '0' NOT NULL,
privmsgs_to_userid int(11) DEFAULT '0' NOT NULL,
privmsgs_date int(11) DEFAULT '0' NOT NULL,
privmsgs_ip varchar(8) NOT NULL,
privmsgs_bbcode_uid int(11) DEFAULT '0' NOT NULL,
privmsgs_ip char(8) NOT NULL,
privmsgs_bbcode_uid varchar(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (privmsgs_id),
KEY privmsgs_from_userid (privmsgs_from_userid),
KEY privmsgs_to_userid (privmsgs_to_userid)
@@ -321,7 +321,7 @@ DROP TABLE IF EXISTS phpbb_session_keys;
CREATE TABLE phpbb_session_keys (
key_user_id int(11) DEFAULT '0' NOT NULL,
key_ip varchar(8) NOT NULL,
key_ip char(8) NOT NULL,
key_login varchar(32) NOT NULL,
PRIMARY KEY (key_user_id),
KEY key_ip (key_ip)