mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2024-12-22 16:03:25 +00:00
555ae867ea
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
9 lines
185 B
Elixir
9 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
|