1
0
mirror of https://github.com/hexolan/panels.git synced 2026-05-20 11:39:22 +01:00
Files
panels/services/auth-service/auth_service/postgres/migrations/000001_init_auth.up.sql
T
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
);