axum-async-graphql/migrations/20240530193528_hersteller.u...

6 lines
121 B
MySQL
Raw Normal View History

2024-05-31 00:32:51 +02:00
-- Add up migration script here
CREATE TABLE hersteller (
2024-06-03 01:53:23 +02:00
hersteller_id SERIAL PRIMARY KEY,
2024-05-31 00:32:51 +02:00
name VARCHAR NOT NULL
);