mirror of
https://github.com/ViViDboarder/docker-duplicity-cron.git
synced 2024-11-14 07:06:30 +00:00
8 lines
132 B
MySQL
8 lines
132 B
MySQL
|
CREATE TABLE test_table (
|
||
|
id integer PRIMARY KEY,
|
||
|
data text NOT NULL
|
||
|
);
|
||
|
|
||
|
INSERT INTO test_table (data)
|
||
|
VALUES ("Test row");
|