1
0
Fork 0
mirror of https://github.com/docker/awesome-compose.git synced 2025-04-26 10:43:35 +02:00
awesome-compose/react-rust-postgres/backend/migrations/0001_create-users_up.sql

5 lines
78 B
MySQL
Raw Normal View History

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