This repository has been archived on 2023-07-09. You can view files and clone it, but cannot push or open issues or pull requests.
sudoscientist-go-backend/packages/auth/users.sql

7 lines
87 B
SQL

create table users (
username text primary key,
password text,
admin boolean
);