Files
panels/services/auth-service/auth_service/postgres/migrations/000001_init_auth.up.sql
2023-09-27 16:01:41 +01:00

4 lines
106 B
SQL

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