diff --git a/schema.sql b/schema.sql index f1f4538..a1fe5fb 100644 --- a/schema.sql +++ b/schema.sql @@ -1,5 +1,5 @@ CREATE TABLE entries ( - path TEXT PRIMARY KEY, + path BYTEA PRIMARY KEY, size BIGINT, sha256 BYTEA NOT NULL, md5 BYTEA NOT NULL diff --git a/scripts/add.sh b/scripts/add.sh index 48a9399..7cbdc64 100755 --- a/scripts/add.sh +++ b/scripts/add.sh @@ -7,8 +7,5 @@ if [[ "$1" != "" ]]; then DIR="$1" fi -#find "${DIR}" -type f | docker-compose run srg -format postgres -pg_table entries -pg_mode insert -pg_connstr "user=orbeat password=orbeat dbname=orbeat sslmode=disable host=db" -#find "${DIR}" -type f | docker-compose run srg -format text -pg_binary true -pg_table entries -pg_mode insert -pg_connstr "user=orbeat password=orbeat dbname=orbeat sslmode=disable host=db" -#exit 0 -find "${DIR}" -type f | docker-compose run srg -format postgres -pg_table entries -pg_mode insert_binary -pg_connstr "user=orbeat password=orbeat dbname=orbeat sslmode=disable host=db" +find "${DIR}" -type f | docker-compose run --rm srg -format postgres -pg_table entries -pg_mode insert_binary -pg_connstr "user=orbeat password=orbeat dbname=orbeat sslmode=disable host=db"