docker-restic-cron/tests/test-pre-scripts/create-test-data.sql

8 lines
132 B
MySQL
Raw Normal View History

2019-01-28 17:53:41 +00:00
CREATE TABLE test_table (
id integer PRIMARY KEY,
data text NOT NULL
);
INSERT INTO test_table (data)
VALUES ("Test row");