This repository has been archived on 2024-06-16. You can view files and clone it, but cannot push or open issues or pull requests.
weekbudget/backend/priv/repo/migrations/20190523122356_init.exs
2019-05-27 06:02:42 +02:00

12 lines
265 B
Elixir

defmodule WeekBudget.DB.Repo.Migrations.Init do
use Ecto.Migration
def change do
create table(:budgets, primary_key: false) do
add(:secret, :binary_id, primary_key: true)
add(:amount, :money_with_currency)
timestamps()
end
end
end