Files
axum-async-graphql/migrations/20240530193528_hersteller.up.sql
2026-05-29 20:21:28 +02:00

7 lines
207 B
SQL

CREATE TABLE IF NOT EXISTS hersteller (
id UUID PRIMARY KEY,
herstellername VARCHAR NOT NULL,
erstellt_am TIMESTAMP WITH TIME ZONE NOT NULL,
geaendert_am TIMESTAMP WITH TIME ZONE NOT NULL
);