remove unused plans fields (#59)

This commit is contained in:
Matthew Ryan Dillon 2020-11-21 18:36:56 -07:00 committed by GitHub
parent 404caad2ac
commit 4601a6dc2d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 4 deletions

View file

@ -0,0 +1,11 @@
defmodule Planner.Repo.Migrations.RemoveUnusedFieldsFromPlans do
use Ecto.Migration
def change do
alter table(:plans) do
remove(:start)
remove(:end)
remove(:description)
end
end
end