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

6 lines
105 B
MySQL
Raw Normal View History

2024-05-31 00:32:51 +02:00
-- Add up migration script here
CREATE TABLE typen (
id SERIAL PRIMARY KEY,
name VARCHAR NOT NULL
);