aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas/postgres_schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/install/schemas/postgres_schema.sql')
-rw-r--r--phpBB/install/schemas/postgres_schema.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/schemas/postgres_schema.sql b/phpBB/install/schemas/postgres_schema.sql
index 9134573136..07296bf658 100644
--- a/phpBB/install/schemas/postgres_schema.sql
+++ b/phpBB/install/schemas/postgres_schema.sql
@@ -485,7 +485,7 @@ CREATE TABLE phpbb_icons (
icons_url varchar(255),
icons_width INT2 NOT NULL,
icons_height INT2 NOT NULL,
- icons_order INT2 NOT NULL,
+ icons_order INT4 NOT NULL,
display_on_posting INT2 DEFAULT '1' NOT NULL,
PRIMARY KEY (icons_id),
CHECK (icons_width>=0),
@@ -981,7 +981,7 @@ CREATE TABLE phpbb_smilies (
smiley_url varchar(50),
smiley_width INT2 NOT NULL,
smiley_height INT2 NOT NULL,
- smiley_order INT2 NOT NULL,
+ smiley_order INT4 NOT NULL,
display_on_posting INT2 DEFAULT '1' NOT NULL,
PRIMARY KEY (smiley_id),
CHECK (smiley_width>=0),