docker-restic-cron/tests/test-pre-scripts/create-test-data.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");