zero-to-production/migrations/20210815112026_create_users_table.sql

7 lines
141 B
MySQL
Raw Normal View History

2021-08-15 12:26:16 +00:00
-- Add migration script here
CREATE TABLE users(
user_id uuid PRIMARY KEY,
username TEXT NOT NULL UNIQUE,
password TEXT NOT NULL
);