diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-03-07 00:03:51 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-03-07 00:04:40 +0000 |
commit | 6fa901871df81cd8ecdc07d30ef1a20d8c7b1b1d (patch) | |
tree | 7b79dcde28aa9f190e6d28aa4e6634e7ddccf34e /service/schema.sql | |
parent | Wrap support for making unique ptrs from functions (diff) | |
download | mirrorsearch-6fa901871df81cd8ecdc07d30ef1a20d8c7b1b1d.tar.bz2 mirrorsearch-6fa901871df81cd8ecdc07d30ef1a20d8c7b1b1d.tar.xz mirrorsearch-6fa901871df81cd8ecdc07d30ef1a20d8c7b1b1d.zip |
Store parser flags in service config
Diffstat (limited to 'service/schema.sql')
-rw-r--r-- | service/schema.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/service/schema.sql b/service/schema.sql index b529172..93a87d3 100644 --- a/service/schema.sql +++ b/service/schema.sql @@ -2,6 +2,7 @@ CREATE TABLE searchservices( id int GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY, name text not null, baseurl text not null, + parserflags int not null, listxpath text not null, urlxpath text not null ); |