mirror of
https://github.com/LukeMathWalker/zero-to-production.git
synced 2024-11-15 21:21:00 +00:00
6 lines
141 B
SQL
6 lines
141 B
SQL
-- Add migration script here
|
|
CREATE TABLE users(
|
|
user_id uuid PRIMARY KEY,
|
|
username TEXT NOT NULL UNIQUE,
|
|
password TEXT NOT NULL
|
|
);
|