mirror of
https://github.com/ViViDboarder/docker-duplicity-cron.git
synced 2024-11-13 07:26:29 +00:00
b2fd9d4259
Allows adding scripts to a directory to be executed before backups and after restorating. This can allow backing up a mysql dump or something. Using these could (and probably does) break verify checks Fixes #8
8 lines
132 B
SQL
8 lines
132 B
SQL
CREATE TABLE test_table (
|
|
id integer PRIMARY KEY,
|
|
data text NOT NULL
|
|
);
|
|
|
|
INSERT INTO test_table (data)
|
|
VALUES ("Test row");
|