Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FEAT]: Move questions to backend #2

Open
rodcordeiro opened this issue Sep 11, 2021 · 0 comments
Open

[FEAT]: Move questions to backend #2

rodcordeiro opened this issue Sep 11, 2021 · 0 comments
Assignees
Milestone

Comments

@rodcordeiro
Copy link
Member

Move questions to database and making them be rendered as components.

  • Easier to maintain
  • Easier and faster to update

Entities reference

categories

Name Tags SQL
id uuid PK
category string unique
created_at Date
updated_at Date

questions

Name Tags SQL
id uuid PK
question text
answerType string enum(select,text,validation)
options string Null
category uuid FK (categories.id)
created_at Date
updated_at Date

answers

Name Tags SQL
id uuid PK
answer text
category uuid FK (categories.id)
question uuid FK (questions.id)
remarks text
created_at Date
updated_at Date
@rodcordeiro rodcordeiro transferred this issue from another repository Sep 13, 2021
@rodcordeiro rodcordeiro added this to the Release 1.0.0 milestone Sep 13, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants