Files
axum-async-graphql/migrations/20240530193528_hersteller.up.sql

7 lines
207 B
MySQL
Raw Normal View History

2024-06-03 15:41:00 +02:00
CREATE TABLE IF NOT EXISTS hersteller (
id UUID PRIMARY KEY,
2026-05-29 20:21:28 +02:00
herstellername VARCHAR NOT NULL,
erstellt_am TIMESTAMP WITH TIME ZONE NOT NULL,
geaendert_am TIMESTAMP WITH TIME ZONE NOT NULL
2024-05-31 00:32:51 +02:00
);