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