2022-05-09 19:13:32 +00:00
|
|
|
let new_version = 16L and old_version = 15L
|
|
|
|
and identifier = "2022-05-09"
|
|
|
|
and migrate_doc = "switch uuid encoding to hex"
|
|
|
|
and rollback_doc = "switch uuid encoding back to binary"
|
|
|
|
|
2022-05-16 13:57:58 +00:00
|
|
|
open Grej.Infix
|
|
|
|
|
2022-05-09 19:13:32 +00:00
|
|
|
let old_uuid_rep =
|
|
|
|
let encode uuid = Ok (Uuidm.to_bytes uuid) in
|
|
|
|
let decode s =
|
|
|
|
Uuidm.of_bytes s
|
|
|
|
|> Option.to_result ~none:"failed to decode uuid"
|
|
|
|
in
|
|
|
|
Caqti_type.custom ~encode ~decode Caqti_type.string
|
|
|
|
|
2022-05-17 10:14:39 +00:00
|
|
|
let new_uuid_rep =
|
|
|
|
let encode uuid = Ok (Uuidm.to_string uuid) in
|
|
|
|
let decode s =
|
|
|
|
Uuidm.of_string s
|
|
|
|
|> Option.to_result ~none:"failed to decode uuid"
|
|
|
|
in
|
|
|
|
Caqti_type.custom ~encode ~decode Caqti_type.string
|
|
|
|
|
2022-05-09 19:13:32 +00:00
|
|
|
let uuids_byte_encoded_q =
|
2022-05-16 13:57:58 +00:00
|
|
|
Caqti_type.unit ->*
|
|
|
|
Caqti_type.tup2 (Builder_db.Rep.id (`build : [`build])) old_uuid_rep @@
|
|
|
|
"SELECT id, uuid FROM build"
|
2022-05-09 19:13:32 +00:00
|
|
|
|
|
|
|
let uuids_hex_encoded_q =
|
2022-05-16 13:57:58 +00:00
|
|
|
Caqti_type.unit ->*
|
2022-05-17 10:14:39 +00:00
|
|
|
Caqti_type.tup2 (Builder_db.Rep.id (`build : [`build])) new_uuid_rep @@
|
2022-05-16 13:57:58 +00:00
|
|
|
"SELECT id, uuid FROM build"
|
2022-05-09 19:13:32 +00:00
|
|
|
|
|
|
|
let migrate_q =
|
2022-05-17 10:14:39 +00:00
|
|
|
Caqti_type.tup2 (Builder_db.Rep.id (`build : [`build])) new_uuid_rep ->.
|
2022-05-16 13:57:58 +00:00
|
|
|
Caqti_type.unit @@
|
|
|
|
"UPDATE build SET uuid = $2 WHERE id = $1"
|
2022-05-09 19:13:32 +00:00
|
|
|
|
|
|
|
let rollback_q =
|
2022-05-16 13:57:58 +00:00
|
|
|
Caqti_type.tup2 (Builder_db.Rep.id (`build : [`build])) old_uuid_rep ->.
|
|
|
|
Caqti_type.unit @@
|
|
|
|
"UPDATE build SET uuid = $2 WHERE id = $1"
|
2022-05-09 19:13:32 +00:00
|
|
|
|
|
|
|
let migrate _datadir (module Db : Caqti_blocking.CONNECTION) =
|
|
|
|
let open Grej.Infix in
|
|
|
|
Grej.check_version ~user_version:old_version (module Db) >>= fun () ->
|
|
|
|
Db.collect_list uuids_byte_encoded_q () >>= fun old_uuids ->
|
|
|
|
Grej.list_iter_result (Db.exec migrate_q) old_uuids >>= fun () ->
|
|
|
|
Db.exec (Grej.set_version new_version) ()
|
|
|
|
|
|
|
|
let rollback _datadir (module Db : Caqti_blocking.CONNECTION) =
|
|
|
|
let open Grej.Infix in
|
|
|
|
Grej.check_version ~user_version:new_version (module Db) >>= fun () ->
|
|
|
|
Db.collect_list uuids_hex_encoded_q () >>= fun new_uuids ->
|
|
|
|
Grej.list_iter_result (Db.exec rollback_q) new_uuids >>= fun () ->
|
|
|
|
Db.exec (Grej.set_version old_version) ()
|