create feeds
This commit is contained in:
parent
a2f72a8c42
commit
b323a1ebe4
6 changed files with 77 additions and 14 deletions
|
|
@ -20,11 +20,12 @@ create table if not exists feeds (
|
|||
title text not null,
|
||||
description text,
|
||||
link text,
|
||||
feed_link text,
|
||||
feed_link text not null,
|
||||
icon text
|
||||
);
|
||||
|
||||
create index if not exists idx_feed_folder_id on feeds(folder_id);
|
||||
create unique index if not exists idx_feed_feed_link on feeds(feed_link);
|
||||
|
||||
create table if not exists items (
|
||||
id string primary key,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue