diff --git a/app/lib/server/startup/settings.ts b/app/lib/server/startup/settings.ts index 68e644eb120d2..1562634a24ee9 100644 --- a/app/lib/server/startup/settings.ts +++ b/app/lib/server/startup/settings.ts @@ -1675,10 +1675,6 @@ settingsRegistry.addGroup('Setup_Wizard', function() { key: 'aerospaceDefense', i18nLabel: 'Aerospace_and_Defense', }, - { - key: 'blockchain', - i18nLabel: 'Blockchain', - }, { key: 'consulting', i18nLabel: 'Consulting', diff --git a/server/startup/migrations/index.ts b/server/startup/migrations/index.ts index 7b7ccf8282baa..c3b3ff9fca6c4 100644 --- a/server/startup/migrations/index.ts +++ b/server/startup/migrations/index.ts @@ -72,4 +72,5 @@ import './v245'; import './v246'; import './v247'; import './v248'; +import './v249'; import './xrun'; diff --git a/server/startup/migrations/v249.ts b/server/startup/migrations/v249.ts new file mode 100644 index 0000000000000..d0aa0df199458 --- /dev/null +++ b/server/startup/migrations/v249.ts @@ -0,0 +1,16 @@ +import { Settings } from '../../../app/models/server/raw'; +import { addMigration } from '../../lib/migrations'; + +addMigration({ + version: 249, + async up() { + await Settings.updateOne({ + _id: 'Industry', + value: 'blockchain', + }, { + $set: { + value: 'other', + }, + }); + }, +});