4 lines
99 B
SQL
4 lines
99 B
SQL
CREATE TABLE IF NOT EXISTS GREETINGS (
|
|
id serial PRIMARY KEY,
|
|
name varchar(50) NOT NULL
|
|
);
|