1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-01 17:38:37 +00:00

Fix typo in initial schema

This commit is contained in:
Frédéric Guillot 2017-12-22 16:36:10 -08:00
parent e031dad1e7
commit 948e12c861
2 changed files with 6 additions and 6 deletions

View file

@ -43,8 +43,8 @@ create table feeds (
feed_url text not null,
site_url text not null,
checked_at timestamp with time zone default now(),
etag_header text,
last_modified_header text,
etag_header text default '',
last_modified_header text default '',
parsing_error_msg text default '',
parsing_error_count int default 0,
primary key (id),