Current section
Files
Jump to
Current section
Files
lib/ecto_query_explorer/schemas/query.ex
defmodule EctoQueryExplorer.Query do
use Ecto.Schema
alias EctoQueryExplorer.Sample
schema "queries" do
field :text, :string
field :repo, :string
field :source, :string
field :counter, :integer
has_many :samples, Sample
end
end