1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-28 12:30:42 +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

@@ -238,7 +238,7 @@ CREATE TABLE phpbb_posts (
poster_id int4 DEFAULT '0' NOT NULL,
post_time int4 DEFAULT '0' NOT NULL,
post_username varchar(30),
poster_ip varchar(8) DEFAULT '' NOT NULL,
poster_ip char(8) DEFAULT '' NOT NULL,
bbcode_uid varchar(10) DEFAULT '' NOT NULL,
CONSTRAINT phpbb_posts_pkey PRIMARY KEY (post_id)
);
@@ -269,8 +269,8 @@ CREATE TABLE phpbb_privmsgs (
privmsgs_from_userid int4 DEFAULT '0' NOT NULL,
privmsgs_to_userid int4 DEFAULT '0' NOT NULL,
privmsgs_date int4 DEFAULT '0' NOT NULL,
privmsgs_ip varchar(8) NOT NULL,
privmsgs_bbcode_uid int4 DEFAULT '0' NOT NULL,
privmsgs_ip char(8) NOT NULL,
privmsgs_bbcode_uid varchar(10) DEFAULT '0' NOT NULL,
CONSTRAINT phpbb_privmsgs_pkey PRIMARY KEY (privmsgs_id)
);
CREATE INDEX privmsgs_from_userid_index ON phpbb_privmsgs (privmsgs_from_userid);
@@ -326,7 +326,7 @@ CREATE INDEX session_id_ip_user_id ON phpbb_session (session_id, session_ip, ses
-------------------------------------------------------- */
CREATE TABLE phpbb_session_keys (
key_user_id int4 DEFAULT '0' NOT NULL,
key_ip varchar(8) DEFAULT '' NOT NULL,
key_ip char(8) DEFAULT '' NOT NULL,
key_login varchar(32) DEFAULT '' NOT NULL,
CONSTRAINT phpbb_session_keys_pkey PRIMARY KEY (key_user_id)
);