Current section
Files
Jump to
Current section
Files
priv/repo/migrations/20161113112447_create_events.exs
defmodule EZCalendar.Repo.Migrations.CreateEvents do
use Ecto.Migration
def change do
create table(:events) do
add :title, :string
add :date, :date
add :posted_on, :date
timestamps()
end
end
end