inventory-system/migrations/2022-07-21-115312_create_users/up.sql
Jake Hillion d60e5eb920
Some checks are pending
continuous-integration/drone/push Build is running
added users table
2022-07-21 12:55:31 +01:00

7 lines
137 B
SQL

-- Your SQL goes here
CREATE TABLE users (
id UUID PRIMARY KEY NOT NULL DEFAULT gen_random_uuid(),
nickname VARCHAR NOT NULL
);