Skip to content

Commit

Permalink
ummm collation?
Browse files Browse the repository at this point in the history
  • Loading branch information
Mstrodl committed Mar 19, 2024
1 parent 7e70025 commit 7b26f51
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/processDump.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
`instruction_mode` varchar(2) NOT NULL,
`course_descrlong` text NOT NULL,
PRIMARY KEY (`crse_id`,`crse_offer_nbr`,`strm`,`session_code`,`class_section`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci;
ENE;

if (mysqli_query($dbConn, $tempQuery)) {
Expand Down Expand Up @@ -139,7 +139,7 @@
`sun` varchar(1) NOT NULL,
PRIMARY KEY (`crse_id`,`crse_offer_nbr`,`strm`,`session_code`,`class_section`, `class_mtg_nbr`),
INDEX(`crse_id`, `crse_offer_nbr`, `strm`, `session_code`, `class_section`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci;
ENE;

if (mysqli_query($dbConn, $tempQuery)) {
Expand All @@ -163,7 +163,7 @@
`last_name` varchar(30) NOT NULL,
`first_name` varchar(30) NOT NULL,
INDEX (`crse_id`,`crse_offer_nbr`,`strm`,`session_code`,`class_section`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci;
ENE;

if (mysqli_query($dbConn, $tempQuery)) {
Expand Down

0 comments on commit 7b26f51

Please sign in to comment.