1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 18:55:55 +00:00

new schema adapted for mysql, PG schema fixes

This commit is contained in:
Andrew Dolgov
2005-11-19 11:03:47 +01:00
parent 5d15d3eacd
commit c62d62f65e
2 changed files with 24 additions and 14 deletions

View File

@@ -49,8 +49,10 @@ 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(),
comments varchar(250) not null default '',
index (guid), index(title));
comments varchar(250) not null default '');
create index ttrss_entries_guid_index on ttrss_entries(guid);
create index ttrss_entries_title_index on ttrss_entries(title);
create table ttrss_user_entries (
int_id serial not null primary key,