mirror of
https://github.com/tokio-rs/axum.git
synced 2025-02-16 18:31:51 +01:00
6 lines
124 B
SQL
6 lines
124 B
SQL
-- Your SQL goes here
|
|
CREATE TABLE "users"(
|
|
"id" SERIAL PRIMARY KEY,
|
|
"name" TEXT NOT NULL,
|
|
"hair_color" TEXT
|
|
);
|