mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 15:17:18 +01:00
7 lines
124 B
MySQL
7 lines
124 B
MySQL
|
-- Your SQL goes here
|
||
|
CREATE TABLE "users"(
|
||
|
"id" SERIAL PRIMARY KEY,
|
||
|
"name" TEXT NOT NULL,
|
||
|
"hair_color" TEXT
|
||
|
);
|