5fbaf42cad
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
10 lines
195 B
Elixir
10 lines
195 B
Elixir
defmodule :"Elixir.Mobilizon.Repo.Migrations.Add-url-to-addresses" do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:addresses) do
|
|
add(:url, :string, null: false)
|
|
end
|
|
end
|
|
end
|