555ae867ea
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
10 lines
185 B
Elixir
10 lines
185 B
Elixir
defmodule Mobilizon.Storage.Repo.Migrations.AddCodeToParticipants do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:participants) do
|
|
add(:code, :string)
|
|
end
|
|
end
|
|
end
|