remove unused plans fields (#59)
This commit is contained in:
parent
404caad2ac
commit
4601a6dc2d
2 changed files with 12 additions and 4 deletions
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue