summaryrefslogtreecommitdiff
path: root/service/schema.sql
blob: c439d73ae484fc14fde9ad9ceb8e37eb2b0f6afd (plain)
1
2
3
4
5
6
7
8
9
10
11
CREATE TABLE searchservices(
    id int GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY,
		name text not null,
		baseurl text not null,
		referrer text,
		useragent text,
		parserflags int not null,
		listxpath text not null,
		urlxpath text not null
);