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