This excellent little contribution still works well if you require a simple Latest News / Announcement on the index page of your Store.

There is no package, just a note for the .sql file.

On line 4 you'll find:

news_id int(11) DEFAULT '0' NOT NULL auto_increment

--

Change to:

news_id int(11) NOT NULL auto_increment

and run!
--

Default '0' is not required due to auto_increment

That's it!



More...