Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ Firebase database table structure
- [Users](/users)
- [Wallets](/wallets)
- [Applicants](/applicants)
- [Discord-actions](/discordactions)
18 changes: 18 additions & 0 deletions discordactions/discord-roles/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Discord-roles firestore collection data model

```
{
createdBy: string,
date: timestamp,
roleid: string,
rolename: string
}
```
### Example
```
{
createdBy: "<rds-userId>",
date: May 6, 2023 at 5:28:05 PM UTC+5:30,
roleid: "1234567",
rolename: "group-demo"
}
18 changes: 18 additions & 0 deletions discordactions/member-group-roles/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Member-group-roles firestore collection data model

```
{
date: timestamp,
roleid: string,
userid: string,
}
```

## Example
```
{
date: May 5, 2023 at 3:58:46 AM UTC+5:30
roleid: "12345678"
userid: "<rds-useId>"
}
```