diff --git a/README.md b/README.md index a75f79c..ac565c6 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,9 @@ Firebase database table structure - [Recruiters](/recruiters) - [Tasks](/tasks) - [Trade-logs](/trade-logs) +- [Tags](/tags) - [Transactions](/transactions) - [Stocks](/stocks) - [Users](/users) +- [UserTags](/userTags) - [Wallets](/wallets) diff --git a/skills/README.md b/skills/README.md deleted file mode 100644 index a38e69b..0000000 --- a/skills/README.md +++ /dev/null @@ -1,11 +0,0 @@ -# Skills -Firestore Skills collection data model. - -``` -{ - name: String, - on: String, - by: String, - for: String, -} -``` \ No newline at end of file diff --git a/tags/README.md b/tags/README.md new file mode 100644 index 0000000..b186a48 --- /dev/null +++ b/tags/README.md @@ -0,0 +1,12 @@ +# Tags + +``` +{ + id: String, + type: String, + name: String, + createdBy: String, + reason: String, + date: Timestamp, +} +``` \ No newline at end of file diff --git a/userTags/README.md b/userTags/README.md new file mode 100644 index 0000000..08d4721 --- /dev/null +++ b/userTags/README.md @@ -0,0 +1,9 @@ +# User Tags +Firestore collection model for user related tags & its metadata + +``` +{ + userId: String, + tagId: String, +} +``` \ No newline at end of file diff --git a/users/README.md b/users/README.md index 4abdbc7..ed54d22 100644 --- a/users/README.md +++ b/users/README.md @@ -16,7 +16,6 @@ 'linkedin_id': string, 'twitter_id': string, 'instagram_id': string, - 'skills': [], 'website': string, 'github_display_name': string, 'isMember': boolean,