Module Database_migration_repo.Migration

type t = {
namespace : string;
version : int;
dirty : bool;
}
val dirty : t -> bool
val version : t -> int
val namespace : t -> string
module Fields : sig ... end
val create : namespace:string -> t
val mark_dirty : t -> t
val mark_clean : t -> t
val increment : t -> t
val steps_to_apply : ('a * 'b CCList.t) -> t -> 'a * 'b CCList.t
val of_tuple : (string * int * bool) -> t
val to_tuple : t -> string * int * bool
val dirty : t -> bool