NAPPDesafio/api/models/users/schema.sql
2024-07-21 00:15:14 -03:00

7 lines
163 B
SQL

CREATE TABLE users (
"user" UUID NOT NULL,
created_at TIMESTAMP NOT NULL,
updated_at TIMESTAMP,
username text NOT NULL,
"password" text NOT NULL
)