Files
axum-async-graphql/migrations/20240530193528_hersteller.up.sql
2026-06-06 11:59:20 +02:00

8 lines
247 B
SQL

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