mirror of
https://github.com/xorcare/testing-go-code-with-postgres.git
synced 2024-12-24 16:28:34 +02:00
7 lines
144 B
SQL
7 lines
144 B
SQL
CREATE TABLE users
|
|
(
|
|
user_id uuid,
|
|
username VARCHAR(50) UNIQUE NOT NULL,
|
|
created_at TIMESTAMP WITH TIME ZONE NOT NULL
|
|
);
|