Add price and filter homepage

This commit is contained in:
2023-12-04 00:54:16 +00:00
parent 02e6033467
commit 09433c76fc
7 changed files with 35 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
defmodule Wish.Repo.Migrations.AddItemPrice do
use Ecto.Migration
def change do
alter table("items") do
add :price, :integer
end
end
end