From 9a9a57a68d7d359bd2918ea89710917c4bd16118 Mon Sep 17 00:00:00 2001 From: Carifio24 Date: Wed, 4 Oct 2023 17:53:35 -0400 Subject: [PATCH] Fix typo in SQL definition. --- src/stories/minids/sql/create_eclipse_response_table.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stories/minids/sql/create_eclipse_response_table.sql b/src/stories/minids/sql/create_eclipse_response_table.sql index 85dd835..dfbb9dd 100644 --- a/src/stories/minids/sql/create_eclipse_response_table.sql +++ b/src/stories/minids/sql/create_eclipse_response_table.sql @@ -1,7 +1,7 @@ CREATE TABLE EclipseMiniResponses ( id int(11) UNSIGNED NOT NULL UNIQUE AUTO_INCREMENT, user_uuid varchar(36) NOT NULL UNIQUE, - responses JSON DEFAULT NULL, + mc_responses JSON DEFAULT NULL, preset_locations JSON NOT NULL, preset_locations_count INT NOT NULL, user_selected_locations JSON NOT NULL,