Skip to content

Commit

Permalink
Fix: default tts_seed to null
Browse files Browse the repository at this point in the history
  • Loading branch information
Bizzonium committed Dec 13, 2022
1 parent bf16c28 commit b991fb6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion SQL/paradise_schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ CREATE TABLE `characters` (
`gear` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`autohiss` tinyint(1) NOT NULL,
`uplink_pref` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`tts_seed` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Xenia',
`tts_seed` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `ckey` (`ckey`)
) ENGINE=InnoDB AUTO_INCREMENT=125467 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
Expand Down
2 changes: 1 addition & 1 deletion SQL/paradise_schema_prefixed.sql
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ CREATE TABLE `SS13_characters` (
`gear` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`autohiss` tinyint(1) NOT NULL,
`uplink_pref` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`tts_seed` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Xenia',
`tts_seed` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `ckey` (`ckey`)
) ENGINE=InnoDB AUTO_INCREMENT=125467 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
Expand Down
2 changes: 1 addition & 1 deletion SQL/updates/25-26.sql
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Add TTS voice seed preference
ALTER TABLE `characters` ADD `tts_seed` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT 'Xenia' AFTER `uplink_pref`;
ALTER TABLE `characters` ADD `tts_seed` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL AFTER `uplink_pref`;

0 comments on commit b991fb6

Please sign in to comment.