fix tags
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
8b4d1ab4e4
commit
32bd50d161
@ -50,7 +50,7 @@ defmodule Eventos.Events.Event do
|
|||||||
field :large_image, :string
|
field :large_image, :string
|
||||||
field :publish_at, Timex.Ecto.DateTimeWithTimezone
|
field :publish_at, Timex.Ecto.DateTimeWithTimezone
|
||||||
belongs_to :organizer, Account, [foreign_key: :organizer_id]
|
belongs_to :organizer, Account, [foreign_key: :organizer_id]
|
||||||
has_many :tags, Tag
|
many_to_many :tags, Tag, join_through: "events_tags"
|
||||||
belongs_to :category, Category
|
belongs_to :category, Category
|
||||||
many_to_many :participants, Account, join_through: Participant
|
many_to_many :participants, Account, join_through: Participant
|
||||||
has_many :event_request, Request
|
has_many :event_request, Request
|
||||||
@ -64,6 +64,7 @@ defmodule Eventos.Events.Event do
|
|||||||
def changeset(%Event{} = event, attrs) do
|
def changeset(%Event{} = event, attrs) do
|
||||||
event
|
event
|
||||||
|> cast(attrs, [:title, :description, :begins_on, :ends_on, :organizer_id, :category_id, :state, :geom, :status, :public, :thumbnail, :large_image, :publish_at])
|
|> cast(attrs, [:title, :description, :begins_on, :ends_on, :organizer_id, :category_id, :state, :geom, :status, :public, :thumbnail, :large_image, :publish_at])
|
||||||
|
|> cast_assoc(:tags)
|
||||||
|> validate_required([:title, :description, :begins_on, :ends_on, :organizer_id, :category_id])
|
|> validate_required([:title, :description, :begins_on, :ends_on, :organizer_id, :category_id])
|
||||||
|> TitleSlug.maybe_generate_slug()
|
|> TitleSlug.maybe_generate_slug()
|
||||||
|> TitleSlug.unique_constraint()
|
|> TitleSlug.unique_constraint()
|
||||||
|
10
priv/repo/migrations/20180110093906_create_events_tags.exs
Normal file
10
priv/repo/migrations/20180110093906_create_events_tags.exs
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
defmodule Eventos.Repo.Migrations.CreateEventsTags do
|
||||||
|
use Ecto.Migration
|
||||||
|
|
||||||
|
def change do
|
||||||
|
create table(:events_tags, primary_key: false) do
|
||||||
|
add :event_id, references(:events)
|
||||||
|
add :tag_id, references(:tags)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in New Issue
Block a user