1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-07 07:19:17 +00:00

add column for slash:comments and alike in ttrss_entries (+ add upgrade scripts for 1.1.1)

This commit is contained in:
Andrew Dolgov
2005-12-10 08:14:29 +01:00
parent 75836f3386
commit eb40e11b14
4 changed files with 22 additions and 0 deletions

View File

@@ -65,6 +65,7 @@ create table ttrss_entries (id serial not null primary key,
content_hash varchar(250) not null,
no_orig_date boolean not null default false,
date_entered timestamp not null default NOW(),
num_comments integer not null default 0,
comments varchar(250) not null default '');
create index ttrss_entries_guid_index on ttrss_entries(guid);