summaryrefslogtreecommitdiff
path: root/service/schema.sql
blob: 93a87d3204af27ce72cfd2330abc134f00739c61 (plain)
1
2
3
4
5
6
7
8
9
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
);