Database setup SQL query added to README.

ipc07
Luka Vandervelden 2018-09-23 16:20:42 +02:00
parent 20fa7650dd
commit ba5821052c
1 changed files with 9 additions and 0 deletions

9
README.md Normal file
View File

@ -0,0 +1,9 @@
# 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[]);
```