mirror of
https://github.com/ViViDboarder/docker-restic-cron.git
synced 2024-11-14 17:26:47 +00:00
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");
|