I need to write roll-in and roll-back scripts for AWS Keyspaces. Roll-in is
ALTER TABLE my_table ADD (
next_value_1 double,
next_value_2 double,
);
What roll-back script should be? According to what's written at Tutorial: Delete data in an Amazon Keyspaces table I can't drop columns from a table.
You can delete a column from a specific row, individual rows from a table, all the rows from a table, an entire table, or a keyspace.
Also there's no ALTER TABLE xxx DROP ()
mentions in DDL statements page.
Is there any way to do this?