axum-async-graphql/migrations/20240530193519_typen.up.sql

6 lines
119 B
SQL

-- Add up migration script here
CREATE TABLE IF NOT EXISTS typen (
id SERIAL PRIMARY KEY,
name VARCHAR NOT NULL
);