If we want to migrate data from old table to new table (new table with schema change) then what are options available ?
old table:-
CREATE TABLE old_table ( created_date timestamp, track_id text, name text, PRIMARY KEY (created_date) )
New Table:-
CREATE TABLE new_table ( created_date timestamp, week number, message text, track_id text, name text, PRIMARY KEY ( (created_date, week) ) )