mirror of
https://github.com/tokio-rs/axum.git
synced 2025-09-28 13:30:39 +00:00
7 lines
124 B
SQL
7 lines
124 B
SQL
-- Your SQL goes here
|
|
CREATE TABLE "users"(
|
|
"id" SERIAL PRIMARY KEY,
|
|
"name" TEXT NOT NULL,
|
|
"hair_color" TEXT
|
|
);
|