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?

有帮助吗?

解决方案

colleague helped me

alter type archik_type( 
modify archik_number string(256)
) 
publish
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top