23 lines
549 B
Elixir
23 lines
549 B
Elixir
|
defmodule Memex.Notes.Note do
|
||
|
use Ecto.Schema
|
||
|
import Ecto.Changeset
|
||
|
|
||
|
@primary_key {:id, :binary_id, autogenerate: true}
|
||
|
@foreign_key_type :binary_id
|
||
|
schema "notes" do
|
||
|
field :content, :string
|
||
|
field :tag, {:array, :string}
|
||
|
field :title, :string
|
||
|
field :visibility, Ecto.Enum, values: [:public, :private, :unlisted]
|
||
|
|
||
|
timestamps()
|
||
|
end
|
||
|
|
||
|
@doc false
|
||
|
def changeset(note, attrs) do
|
||
|
note
|
||
|
|> cast(attrs, [:title, :content, :tag, :visibility])
|
||
|
|> validate_required([:title, :content, :tag, :visibility])
|
||
|
end
|
||
|
end
|