Ambienti/Tipi campo descrizione TEXT: differenze tra le versioni

Da Webmobili Wiki.
Nessun oggetto della modifica
Riga 10: Riga 10:
WHERE LocaleKey = 'Description'
WHERE LocaleKey = 'Description'
</syntaxhighlight>
</syntaxhighlight>
Le '''LocaleKeyGroup''' coinvolte sono
* <code>Category</code>
* <code>Manufacturer</code>
* <code>Product</code>
* <code>ProductProperty</code>
* <code>ProductPropertyValue</code>
* <code>ShopPoint</code>
* <code>ShopPointProperty</code>
* <code>ShopPointPropertyValue</code>
* <code>Tag</code>


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

Versione delle 14:44, 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'

Le LocaleKeyGroup coinvolte sono

  • Category
  • Manufacturer
  • Product
  • ProductProperty
  • ProductPropertyValue
  • ShopPoint
  • ShopPointProperty
  • ShopPointPropertyValue
  • Tag

BO Admin