Hi All ,
How can I increase the length of a Custom Column of PersonwantsOrg/ ShoppingCartItem table ? Is there any Stored Procedure for this Which can be used ( Identity Manager Version - 7.0.1 )
Thanks in Advance.
Hi All ,
How can I increase the length of a Custom Column of PersonwantsOrg/ ShoppingCartItem table ? Is there any Stored Procedure for this Which can be used ( Identity Manager Version - 7.0.1 )
Thanks in Advance.
Increasing length of a column may be done, but I would not encourage doing so, because the next migration will again shorten the length. My advice would be to add with Schemaextension a new column with…
Hi,
If this is indeed a 'custom' column ..... then a migration will leave it as is ..... so you can adjust it simply by using a standard SQL 'ALTER' statement. e.g.
ALTER TABLE [table_name…
Increasing length of a column may be done, but I would not encourage doing so, because the next migration will again shorten the length. My advice would be to add with Schemaextension a new column with the desired length.
Increasing length of a column may be done, but I would not encourage doing so, because the next migration will again shorten the length. My advice would be to add with Schemaextension a new column with the desired length.