1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +02:00

some bugfixes

git-svn-id: file:///svn/phpbb/trunk@6149 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2006-07-06 16:46:53 +00:00
parent 2b531a279f
commit 462dc69b8e
38 changed files with 296 additions and 319 deletions

View File

@@ -291,7 +291,7 @@ CREATE TABLE phpbb_icons (
icons_url varchar(255),
icons_width tinyint(4) UNSIGNED DEFAULT '0' NOT NULL,
icons_height tinyint(4) UNSIGNED DEFAULT '0' NOT NULL,
icons_order tinyint(4) UNSIGNED DEFAULT '0' NOT NULL,
icons_order mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
display_on_posting tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
PRIMARY KEY (icons_id)
);
@@ -639,7 +639,7 @@ CREATE TABLE phpbb_smilies (
smiley_url varchar(50),
smiley_width tinyint(4) UNSIGNED DEFAULT '0' NOT NULL,
smiley_height tinyint(4) UNSIGNED DEFAULT '0' NOT NULL,
smiley_order tinyint(4) UNSIGNED DEFAULT '0' NOT NULL,
smiley_order mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
display_on_posting tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
PRIMARY KEY (smiley_id)
);