mirror of
https://github.com/tokio-rs/axum.git
synced 2025-10-02 07:20:38 +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
|
|
);
|