docker-duplicity-cron/tests/test-pre-scripts/create-test-data.sql
2019-01-28 09:53:41 -08:00

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");