mirror of
https://github.com/docker/awesome-compose.git
synced 2026-05-17 08:56:02 +03:00
5 lines
78 B
MySQL
5 lines
78 B
MySQL
|
|
CREATE TABLE users (
|
||
|
|
id SERIAL PRIMARY KEY,
|
||
|
|
login TEXT UNIQUE NOT NULL
|
||
|
|
);
|