Upgrading from news 1.25 or earlier? Run something like the following
to add a field to the 'news' table:

MySQL

  alter table news add section varchar(20) default 'Public'

PostgreSQL

  alter table news add section varchar(20)
  alter table news alter section set default 'Public'
