awesome-compose/react-rust-postgres/backend/migrations/2020-03-26-084736_create_people/up.sql
Jérémie Drouet b73e252639 react-rust-postgres: add connection to postgres with migrations
Signed-off-by: Jérémie Drouet <jeremie.drouet@gmail.com>
2020-03-26 10:39:45 +01:00

5 lines
78 B
SQL

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