PR

グッズアンケート #672

kouho opened this at 2024-02-27T15:54:54; closed

Description

opened by kouho at 2024-02-27T15:54:54; updated 2024-02-27T19:06:44
CREATE TABLE `user_questionnaire` (
  `event_no` int NOT NULL,
  `user_no` bigint NOT NULL,
  `answer_no` int NOT NULL,
  `answer_value` int NOT NULL DEFAULT '1',
  `reg_date` datetime NOT NULL,
  PRIMARY KEY (`event_no`,`user_no`,`answer_no`) USING BTREE,
  KEY `reg_date` (`reg_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
CREATE TABLE `user_questionnaire_freely_answer` (
  `event_no` int NOT NULL,
  `user_no` bigint NOT NULL,
  `answer_no` int NOT NULL,
  `text` text NOT NULL,
  PRIMARY KEY (`event_no`,`user_no`,`answer_no`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
kouho merge at 2024-02-27T19:06:44: グッズアンケート
kouho close at 2024-02-27T19:06:44: Close

Commit range

base5491930351d43d4e1bbf6e07e6986aa1f03c93b5
headde3524eb19b1b82e3e719cb7d32c80851afcac55
base branchjolly/jrye-db:master
head branchjolly/jrye-db:questionnaire

View commits

Commit details are loaded from Git when a dynamic archive server is running, or can be embedded with --include-commits.
Files changed4 filesView patch
statusfile
addedcsv/master_questionnaire.csv
addedcsv/master_questionnaire_answer.csv
addedschema/master_questionnaire.yml
addedschema/master_questionnaire_answer.yml
Patch body is stored as a separate file to keep this page lightweight.