bonfire-app/flavours/cooperation/repo/migrations/20220722134234_add_state_to_track.exs
Mayel de Borniol b59d146cab add Rauversion
2022-09-27 11:49:20 +13:00

12 lines
205 B
Elixir

defmodule Rauversion.Repo.Migrations.AddStateToTrack do
use Ecto.Migration
def change do
alter table(:tracks) do
add(:state, :string)
end
create(index(:tracks, [:state]))
end
end