inventory-system/migrations/2022-07-21-115312_create_users/up.sql

7 lines
137 B
MySQL
Raw Permalink Normal View History

2022-07-21 12:55:31 +01:00
-- Your SQL goes here
CREATE TABLE users (
id UUID PRIMARY KEY NOT NULL DEFAULT gen_random_uuid(),
nickname VARCHAR NOT NULL
);