How can I rename a column and not lose any data whilst using hdbcds?
My table looks like this:
entity "my_table" {
"id" : Integer;
"thing" : String(1000);
"other_thing" : String(1000);
};
And I want to rename other_thing to other_other_thing whilst keeping the data so that it lookes like this:
entity "my_table" {
"id" : Integer;
"thing" : String(1000);
"other_other_thing" : String(1000);
};
How can I do this?
Thanks