authd/README.md

10 lines
175 B
Markdown

# authd
## Database setup
```sql
create table users(id int, created_at date, updated_at date, username text, realname text, password text, avatar text, perms text[]);
```