backup-to-nextcloud/initdb.sql
Adrian Amaglio 7ed4949630 init
2023-02-02 10:45:52 +01:00

10 lines
223 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
)