summaryrefslogtreecommitdiff
path: root/service/schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'service/schema.sql')
-rw-r--r--service/schema.sql8
1 files changed, 8 insertions, 0 deletions
diff --git a/service/schema.sql b/service/schema.sql
new file mode 100644
index 0000000..b529172
--- /dev/null
+++ b/service/schema.sql
@@ -0,0 +1,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
+);
+