axum/examples/diesel-async-postgres/migrations/2023-03-14-180127_add_users/up.sql

7 lines
124 B
MySQL
Raw Normal View History

-- Your SQL goes here
CREATE TABLE "users"(
"id" SERIAL PRIMARY KEY,
"name" TEXT NOT NULL,
"hair_color" TEXT
);