1
0
mirror of https://github.com/hexolan/stocklet.git synced 2026-05-20 19:49:26 +01:00
Files
stocklet/schema/sql/auth/000001_init_auth.up.sql
T
2024-04-16 22:27:52 +01:00

4 lines
109 B
SQL

CREATE TABLE auth_methods (
user_id varchar(64) PRIMARY KEY,
hashed_password varchar(128) NOT NULL
);