diff --git a/lib/women_in_tech_vic_web/controllers/page_html/home.html.heex b/lib/women_in_tech_vic_web/controllers/page_html/home.html.heex index 5ac5a15..44ee3d5 100644 --- a/lib/women_in_tech_vic_web/controllers/page_html/home.html.heex +++ b/lib/women_in_tech_vic_web/controllers/page_html/home.html.heex @@ -1,23 +1,23 @@ - -
-

Welcome to Women in Tech Victoria

-

This group is for women who are working (or are interested in working) in the tech industry. -The goal of this group is to create a supportive and welcoming community where we can chat and share our experience with working in workplaces where, as women, we're often a bit of a unicorn.

-
-

Next Event

-

Join us for our next meetup on [Date] at [Location].

-
-
- + +
+

Welcome to Women in Tech Victoria

+

+ This group is for women who are working (or are interested in working) in the tech industry. + The goal of this group is to create a supportive and welcoming community where we can chat and share our experience with working in workplaces where, as women, we're often a bit of a unicorn. +

+
+

Next Event

+

Join us for our next meetup on [Date] at [Location].

+
+
+ - - diff --git a/priv/repo/migrations/20240802171522_create_events.exs b/priv/repo/migrations/20240802171522_create_events.exs new file mode 100644 index 0000000..d3d38a1 --- /dev/null +++ b/priv/repo/migrations/20240802171522_create_events.exs @@ -0,0 +1,15 @@ +defmodule WomenInTechVic.Repo.Migrations.CreateEvents do + use Ecto.Migration + + def change do + create table(:events) do + add :title, :text, null: false + add :scheduled_at, :utc_datetime_usec, null: false + add :online, :boolean, null: false + add :address, :text, null: false + add :description, :text, null: false + + timestamps(type: :utc_datetime_usec) + end + end +end