How to change the dimension of the field in the type by DQL?

2k Views Asked by At

How to change the dimension of the field in the type by DQL?

create type archik_type(
   archik_id ID,
   archik_number string(10)
)
supertype null
publish
go

How I can change from archik_number string(10) to string(256) ? May be 'alter type' help me?

1

There are 1 best solutions below

1
On BEST ANSWER

colleague helped me

alter type archik_type( 
modify archik_number string(256)
) 
publish