Packages

Sow your data seeds - synchronize code-defined fixtures with your database

Current section

Files

Jump to
sow lib sow config.ex
Raw

lib/sow/config.ex

defmodule Sow.Config do
@moduledoc """
Configuration struct for a fixture module.
"""
@type t :: %__MODULE__{
schema: module(),
keys: [atom()],
module: module(),
callback: atom()
}
defstruct [:schema, :keys, :module, callback: :records]
end