1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-13 01:54:12 +02:00

Bugtracker #4405 - extend newsfeed_url DB Field

This commit is contained in:
e107steved
2008-04-29 19:44:26 +00:00
parent 7837aec90c
commit 208d55ffdc
4 changed files with 37 additions and 10 deletions

View File

@@ -0,0 +1,12 @@
CREATE TABLE newsfeed (
newsfeed_id int(10) unsigned NOT NULL auto_increment,
newsfeed_name varchar(150) NOT NULL default '',
newsfeed_url varchar(250) NOT NULL default '',
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_active tinyint(1) unsigned NOT NULL default '0',
newsfeed_updateint int(10) unsigned NOT NULL default '0',
PRIMARY KEY (newsfeed_id)
) TYPE=MyISAM;