Module Sql.ConstraintSource

Sourcemodule StringSet : sig ... end
Sourcetype conflict_algo =
  1. | Ignore
  2. | Replace
  3. | Abort
  4. | Fail
  5. | Rollback
Sourcetype composite =
  1. | CompositePrimary of StringSet.t
  2. | CompositeUnique of StringSet.t
Sourceval compare_composite : composite -> composite -> Ppx_deriving_runtime.int
Sourcetype t =
  1. | PrimaryKey
  2. | NotNull
  3. | Null
  4. | Unique
  5. | Autoincrement
  6. | OnConflict of conflict_algo
  7. | WithDefault
  8. | Composite of composite
Sourceval compare : t -> t -> Ppx_deriving_runtime.int
Sourceval make_composite_primary : StringSet.elt list -> t
Sourceval make_composite_unique : StringSet.elt list -> t