15 lines
263 B
Elixir
15 lines
263 B
Elixir
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
|