* Settings Table CKEditorProviderSettings, column uses nText (deprecated), should use nVarChar(max)
* I suggest adding a column PortalID and narrow column length of SettingName to allow indexing it
* I also suggest adding column TabID and ModuleID and aggregate all settings, this way you could retrieve easily the effective set of settings instead of loading all the sets and merge in business layer.
Comments: ** Comment from web user: leupold **
* I suggest adding a column PortalID and narrow column length of SettingName to allow indexing it
* I also suggest adding column TabID and ModuleID and aggregate all settings, this way you could retrieve easily the effective set of settings instead of loading all the sets and merge in business layer.
Comments: ** Comment from web user: leupold **
Maikl,
if you read the article carefully, you don't need to create a new column.
You just need to perform
```
ALTER Table CKEditorProviderSettings ALTER Column SettingName nVarChar( 50) Not Null;
ALTER Table CKEditorProviderSettings ALTER Column SettingValue nVarChar(Max) Not Null;
GO
UPDATE CKEditorProviderSettings SET SettingValue = SettingValue;
```