6 lines
124 B
SQL
6 lines
124 B
SQL
-- Add up migration script here
|
|
CREATE TABLE IF NOT EXISTS hersteller (
|
|
id SERIAL PRIMARY KEY,
|
|
name VARCHAR NOT NULL
|
|
);
|