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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user