Acceptance criteria:
Tables will be created to match the following schema
ce_question_answers { ceqa_id: bigint, autoincrement, ceqa_user_id: integer, ceqa_event_id: integer, ceqa_question_id: integer, ceqa_answer_option: integer | nullable, ceqa_answer_text: string | nullable } ce_question_aggregation { ceqag_id: bigint | autoincrement, ceqag_question_id: integer, ceqag_event_id: integer, ceqag_qustion_option_id: integer, ceqag_answers_amount: integer } ce_event_questions { ceeq_id: bigint | autoincrement, ceeq_event_id: integer, ceeq_question_id: integer }
We will not ask organizers to add/remove questions, but since we will add this feature later, we will save the question of the events on ce_event_questions
TBD: indexes
TBD: DBA task like T336365