Initial commit

This commit is contained in:
2024-05-27 21:59:41 +08:00
parent 54a4e887c3
commit 1ff500cdfb
7 changed files with 136 additions and 0 deletions

9
duckdb-install.sql Normal file
View File

@ -0,0 +1,9 @@
CREATE TABLE files (
source_file_name TEXT NOT NULL,
source_file_path TEXT NOT NULL,
source_path TEXT NOT NULL
);
COPY
(SELECT * FROM files)
TO 'file-o-bot.db'
(FORMAT 'parquet', CODEC 'zstd');