engage_earn_api/migrations/20230402213003_user.sql
2023-04-02 16:52:17 -05:00

7 lines
107 B
SQL

CREATE TABLE users (
id SERIAL PRIMARY KEY,
username varchar(255) NOT NULL,
password bytea
);