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