5 lines
104 B
SQL
5 lines
104 B
SQL
CREATE TABLE IF NOT EXISTS hersteller (
|
|
id UUID PRIMARY KEY,
|
|
herstellername VARCHAR NOT NULL
|
|
);
|