axum-async-graphql/migrations/20240530193533_modelle.up.sql

10 lines
291 B
MySQL
Raw Normal View History

2024-05-31 00:32:51 +02:00
-- Add up migration script here
CREATE TABLE modelle (
id SERIAL PRIMARY KEY,
name VARCHAR NOT NULL,
typ_id SERIAL,
hersteller_id SERIAL,
CONSTRAINT fk_typ FOREIGN KEY(typ_id) REFERENCES typen(id),
CONSTRAINT fk_hersteller FOREIGN KEY (hersteller_id) REFERENCES hersteller(id)
)