zf

zenflows testing
git clone https://s.sonu.ch/~srfsh/zf.git
Log | Files | Refs | Submodules | README | LICENSE

commit a1ca41e16993341fa73a28d05722aca4137d0cb0
parent ec74d988d61b339143e5be1d3328f8b299d90840
Author: srfsh <dev@srf.sh>
Date:   Thu, 25 Aug 2022 12:46:38 +0300

Zenflows.DB.Repo.Migrations: remove :image field

Diffstat:
Mpriv/repo/migrations/20211111094959_fill_vf_resource_specification.exs | 1-
Mpriv/repo/migrations/20211111102319_fill_vf_recipe_resource.exs | 1-
Mpriv/repo/migrations/20211111175352_fill_vf_agent.exs | 1-
Mpriv/repo/migrations/20211113071804_fill_vf_economic_resource.exs | 1-
Mpriv/repo/migrations/20211114190636_fill_vf_intent.exs | 1-
5 files changed, 0 insertions(+), 5 deletions(-)

diff --git a/priv/repo/migrations/20211111094959_fill_vf_resource_specification.exs b/priv/repo/migrations/20211111094959_fill_vf_resource_specification.exs @@ -22,7 +22,6 @@ def change() do alter table("vf_resource_specification") do add :name, :text, null: false add :note, :text - add :image, :text add :resource_classified_as, {:array, :text} add :default_unit_of_resource_id, references("vf_unit") add :default_unit_of_effort_id, references("vf_unit") diff --git a/priv/repo/migrations/20211111102319_fill_vf_recipe_resource.exs b/priv/repo/migrations/20211111102319_fill_vf_recipe_resource.exs @@ -23,7 +23,6 @@ def change() do add :name, :text, null: false add :note, :text add :substitutable, :boolean, default: false, null: false - add :image, :text add :resource_classified_as, {:array, :text} add :resource_conforms_to_id, references("vf_resource_specification") add :unit_of_resource_id, references("vf_unit") diff --git a/priv/repo/migrations/20211111175352_fill_vf_agent.exs b/priv/repo/migrations/20211111175352_fill_vf_agent.exs @@ -44,7 +44,6 @@ def change() do # common add :name, :text, null: false - add :image, :text add :note, :text add :primary_location_id, references("vf_spatial_thing") timestamps() diff --git a/priv/repo/migrations/20211113071804_fill_vf_economic_resource.exs b/priv/repo/migrations/20211113071804_fill_vf_economic_resource.exs @@ -22,7 +22,6 @@ def change() do alter table("vf_economic_resource") do add :name, :text, null: false add :note, :text - add :image, :text add :tracking_identifier, :text add :classified_as, {:array, :text} add :conforms_to_id, references("vf_resource_specification"), null: false diff --git a/priv/repo/migrations/20211114190636_fill_vf_intent.exs b/priv/repo/migrations/20211114190636_fill_vf_intent.exs @@ -41,7 +41,6 @@ def change() do add :has_point_in_time, :timestamptz add :due, :timestamptz add :finished, :boolean, default: false, null: false - add :image, :text add :note, :text # add :in_scope_of add :agreed_in, :text