Domanda

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?

È stato utile?

Soluzione

colleague helped me

alter type archik_type( 
modify archik_number string(256)
) 
publish
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top