backup-to-nextcloud/initdb.sql
Adrian Amaglio 89f29aab66 update
2023-04-27 14:39:34 +02:00

12 lines
295 B
SQL
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

CREATE TABLE files (
id INTEGER PRIMARY KEY AUTOINCREMENT,
username text NOT NULL,
password text NOT NULL,
server text NOT NULL,
export_path text NOT NULL,
backup_url text NOT NULL,
crontab_time text NOT NULL,
expiration_age int DEFAULT NULL,
expiration_number int DEFAULT NULL
);