awesome-compose/react-rust-postgres/backend/migrations/0001_create-users_up.sql
Jérémie Drouet a13fabe604
refacto(react-rust-postgres): replace rocket by actix-web (#153)
Signed-off-by: Jérémie Drouet <jeremie.drouet@gmail.com>
2021-07-06 18:00:16 +01:00

5 lines
78 B
SQL

CREATE TABLE users (
id SERIAL PRIMARY KEY,
login TEXT UNIQUE NOT NULL
);