blob: 28cd11fb1206ef23ddc85b121f9e302d799011dc (
plain)
1
2
3
4
5
6
7
8
|
begin transaction;
create temporary table replay_repack as
select game_id,role,action,arguments
from game_replay
order by game_id,replay_id;
delete from game_replay;
insert into game_replay (game_id,role,action,arguments) select * from replay_repack;
commit;
|