mirror of
https://github.com/docker/awesome-compose.git
synced 2025-05-24 16:31:10 +00:00
6 lines
133 B
SQL
6 lines
133 B
SQL
CREATE TABLE IF NOT EXISTS example.greetings (
|
|
id INTEGER AUTO_INCREMENT,
|
|
name varchar(50) NOT NULL,
|
|
PRIMARY KEY (id)
|
|
);
|