diff --git a/src/schema.sql b/src/schema.sql index e6ddc92..6bd3838 100644 --- a/src/schema.sql +++ b/src/schema.sql @@ -2,23 +2,23 @@ id int PRIMARY KEY, \ title text, \ url text, \ - feedId int, \ + feed_id int, \ author text, \ - isFavorite int, \ - featuredImage text, \ + is_favorite int, \ + featured_image text, \ content text, \ excerpt text, \ - isRead int, \ - pubDate date \ + is_read int, \ + published_date date \ ); \ CREATE TABLE IF NOT EXISTS feeds ( \ id int PRIMARY KEY, \ title text, \ - url text, \ - feedUrl text, \ + site_url text, \ + feed_url text, \ icon text, \ - isFavorite int, \ - lastPolled date, \ - whitelist text, \ - blacklist text \ + is_favorite int, \ + last_polled date, \ + filter_accept text, \ + filter_reject text \ );"