diff options
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/db/mysql_schema.sql | 1 | ||||
-rw-r--r-- | phpBB/db/postgres_schema.sql | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/db/mysql_schema.sql b/phpBB/db/mysql_schema.sql index dcd4a7ffec..41e3344908 100644 --- a/phpBB/db/mysql_schema.sql +++ b/phpBB/db/mysql_schema.sql @@ -48,6 +48,7 @@ CREATE TABLE phpbb_config ( sitename varchar(100), allow_html tinyint(1), allow_bbcode tinyint(1), + allow_smilies tinyint(1), allow_sig tinyint(1), allow_namechange tinyint(1), allow_theme_create tinyint(1), diff --git a/phpBB/db/postgres_schema.sql b/phpBB/db/postgres_schema.sql index c3c27daf7e..6af711265b 100644 --- a/phpBB/db/postgres_schema.sql +++ b/phpBB/db/postgres_schema.sql @@ -94,6 +94,7 @@ CREATE TABLE phpbb_config ( sitename varchar(100) NOT NULL, allow_html int2 NOT NULL, allow_bbcode int2 NOT NULL, + allow_smilies int2 NOT NULL, allow_sig int2 NOT NULL, allow_namechange int2 NOT NULL, allow_theme_create int2 NOT NULL, |