Files
mini-flees/code/init_db.sh
2023-08-19 11:35:11 +03:00

14 lines
295 B
Bash

#!/bin/bash
cat <<'EOF' | sqlite3 "$1"
CREATE TABLE IF NOT EXISTS files (
token text PRIMARY KEY,
name text NOT NULL,
added integer NOT NULL,
expires integer NOT NULL,
downloads integer NOT NULL,
max_downloads integer NOT NULL
);
EOF