mirror of
https://github.com/LukeMathWalker/zero-to-production.git
synced 2024-11-22 00:31:01 +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
|
|
);
|