summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2024-07-17 18:07:15 -0400
committerLouie S <louie@example.com>2024-07-17 18:07:15 -0400
commit9b0d30029aa6880cdb2bf2ec045524108a684e07 (patch)
treeb99dd7b778ad0bb1595a90022edfcd09fe2a2501 /src/lib
parent386d5d6a5d52ee60584bdf955018f784bddef7e3 (diff)
Set config.mkHEADmaster
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/create_table7
-rw-r--r--src/lib/insert8
2 files changed, 0 insertions, 15 deletions
diff --git a/src/lib/create_table b/src/lib/create_table
deleted file mode 100644
index a783c50..0000000
--- a/src/lib/create_table
+++ /dev/null
@@ -1,7 +0,0 @@
-create_table() {
- DB_PATH="$1"
-
- sqlite3 "$DB_PATH" "CREATE TABLE IF NOT EXISTS searchIndex(id INTEGER PRIMARY KEY, name TEXT, type TEXT, path TEXT);"
- sqlite3 "$DB_PATH" "CREATE UNIQUE INDEX IF NOT EXISTS anchor ON searchIndex (name, type, path);"
-}
-
diff --git a/src/lib/insert b/src/lib/insert
deleted file mode 100644
index 31c1b4c..0000000
--- a/src/lib/insert
+++ /dev/null
@@ -1,8 +0,0 @@
-insert() {
- DB_PATH="$1"
- NAME="$2"
- TYPE="$3"
- PAGE_PATH="$4"
-
- sqlite3 "$DB_PATH" "INSERT INTO searchIndex(name, type, path) VALUES (\"$NAME\",\"$TYPE\",\"$PAGE_PATH\");"
-}