1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-25 00:41:52 +02:00

Fixes #5108 - newsfeed image field length fix.

This commit is contained in:
camer0n
2023-11-20 14:31:52 -08:00
parent d5d40b9cc1
commit f62050cd01

View File

@@ -5,7 +5,7 @@ CREATE TABLE newsfeed (
newsfeed_data longtext NOT NULL,
newsfeed_timestamp int(10) unsigned NOT NULL default '0',
newsfeed_description text NOT NULL,
newsfeed_image varchar(100) NOT NULL default '',
newsfeed_image varchar(250) NOT NULL default '',
newsfeed_active tinyint(1) unsigned NOT NULL default '0',
newsfeed_updateint int(10) unsigned NOT NULL default '0',
PRIMARY KEY (newsfeed_id)