/
phprus
/
git.tt-rss.org_fox_ttrss-post-delay
Обзор
Документация
Войти
/
phprus
/
git.tt-rss.org_fox_ttrss-post-delay
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
sql/mysql/schema.sql
13 строк
663 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 integer not null primary key auto_increment, 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 datetime not null) ENGINE=InnoDB DEFAULT CHARSET=UTF8; create index ttrss_plugin_post_delay_cache_link_idx on ttrss_plugin_post_delay_cache(link(768)); create index ttrss_plugin_post_delay_cache_feed_id_idx on ttrss_plugin_post_delay_cache(feed_id); create unique index ttrss_plugin_post_delay_cache_idx on ttrss_plugin_post_delay_cache(feed_id, link(768));