Autogen Yield liveviews

This commit is contained in:
2023-06-08 21:07:00 +03:00
parent 090053c312
commit 3a983516c9
13 changed files with 578 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
defmodule Osuuspuutarha.Repo.Migrations.CreateYields do
use Ecto.Migration
def change do
create table(:yields) do
add :date, :date
add :plant, :string
add :amount, :decimal
add :unit, :string
timestamps()
end
end
end