analytics / lib /plausible /site /imported_data.ex
Leon4gr45's picture
Upload folder using huggingface_hub (part 2)
8da2481 verified
Raw
History Blame Contribute Delete
349 Bytes
defmodule Plausible.Site.ImportedData do
@moduledoc """
Embedded schema for analytics imports
NOTE: needed by `SiteImports` data migration script
"""
use Ecto.Schema
@type t() :: %__MODULE__{}
embedded_schema do
field :start_date, :date
field :end_date, :date
field :source, :string
field :status, :string
end
end