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

6 lines
119 B
MySQL
Raw Normal View History

2024-05-31 00:32:51 +02:00
-- Add up migration script here
2024-06-03 15:41:00 +02:00
CREATE TABLE IF NOT EXISTS typen (
2024-06-04 15:38:07 +02:00
id SERIAL PRIMARY KEY,
2024-05-31 00:32:51 +02:00
name VARCHAR NOT NULL
);