Removed pile of not needed performer information.

This commit is contained in:
codevictory
2021-05-16 20:50:10 +03:00
parent ca0712d0c6
commit e456641811
6 changed files with 44 additions and 127 deletions

View File

@@ -0,0 +1,18 @@
defmodule Runosaari.Repo.Migrations.PerformersV2 do
use Ecto.Migration
def change do
alter table("performers") do
remove :email
remove :fname
remove :lname
remove :tel
remove :date1
remove :date2
remove :date3
remove :bus
remove :accom
add :name, :string
end
end
end