/
phprus
/
git.tt-rss.org_fox_ttrss-post-delay
Обзор
Документация
Войти
/
phprus
/
git.tt-rss.org_fox_ttrss-post-delay
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
sql/pgsql/schema.sql
12 строк
602 B
Andrew Dolgov
generic version
27 авг 2023, 19:08
Не верифицирован
27 авг 2023, 19:08
a4f5fb3
Код
Авторство
О чём код?
drop table if exists ttrss_plugin_post_delay_cache; create table ttrss_plugin_post_delay_cache (id serial not null primary key, feed_id integer not null REFERENCES ttrss_feeds(id) on DELETE cascade, link text not null, comments text not null, item text not NULL, orig_ts timestamp not null); create unique index ttrss_plugin_post_delay_cache_idx on ttrss_plugin_post_delay_cache(feed_id, link); create index ttrss_plugin_post_delay_cache_link_idx on ttrss_plugin_post_delay_cache(link); create index ttrss_plugin_post_delay_cache_feed_id_idx on ttrss_plugin_post_delay_cache(feed_id);