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
MySQL
Raw Normal View History

2019-02-03 06:57:08 +00:00
create table users (
username text primary key,
password text,
admin boolean
);