Ambienti/Tipi campo descrizione TEXT: differenze tra le versioni

Da Webmobili Wiki.
Nessun oggetto della modifica
Riga 3: Riga 3:
* '''Category''' e '''Category_Ext''' -> Description da nvarchar(4000) a text
* '''Category''' e '''Category_Ext''' -> Description da nvarchar(4000) a text
* '''LocalizedProperty''' e '''LocalizedProperty_Ext''' -> aggiunto campo LocaleValueText di tipo text nullabile
* '''LocalizedProperty''' e '''LocalizedProperty_Ext''' -> aggiunto campo LocaleValueText di tipo text nullabile
Copia dei testi di descrizione già presenti nel nuovo campo text:
<syntaxhighlight lang="sql">
UPDATE LocalizedProperty
SET LocaleValueText = LocaleValueText
WHERE LocaleKey = 'Description'
</syntaxhighlight>


== BO Admin ==
== BO Admin ==

Versione delle 14:39, 22 ott 2024

Tabelle convolte

  • Category e Category_Ext -> Description da nvarchar(4000) a text
  • LocalizedProperty e LocalizedProperty_Ext -> aggiunto campo LocaleValueText di tipo text nullabile

Copia dei testi di descrizione già presenti nel nuovo campo text:

UPDATE LocalizedProperty
SET LocaleValueText = LocaleValueText
WHERE LocaleKey = 'Description'

BO Admin