Hello:
I’d like to know how to remove a foreign key.
I tried `int $ , but it seemed to be wrong, because I cannot add back the foreign key.
q)meta billing_account
c | t f a
---------------------| ---------------------
merchant_terminal_id | i merchant_terminal
q)update merchant_terminal_id : int$ merchant_terminal_id from
billing_account
`billing_account
q)meta billing_account
c | t f a
---------------------| -----
merchant_terminal_id | i
q)update merchant_terminal_id : merchant_terminal $ merchant_terminal_id from
billing_account
'cast
Any help?
Thanks.