handle unfiled tasks (#51)

This commit is contained in:
Matthew Ryan Dillon 2020-11-21 17:17:29 -07:00 committed by GitHub
parent d57fdd0d0f
commit 8201dfbf7a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 29 additions and 9 deletions

View file

@ -0,0 +1,9 @@
defmodule Planner.Repo.Migrations.RemoveFieldFiledAtFromTasks do
use Ecto.Migration
def change do
alter table(:tasks) do
remove(:filed_at)
end
end
end