mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2024-12-22 16:03:25 +00:00
d577b07c6e
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
17 lines
366 B
Elixir
17 lines
366 B
Elixir
defmodule Mobilizon.Storage.Repo.Migrations.AddLanguageToEntities do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:events) do
|
|
add(:language, :string, default: "und")
|
|
end
|
|
|
|
alter table(:comments) do
|
|
add(:language, :string, default: "und")
|
|
end
|
|
|
|
alter table(:posts) do
|
|
add(:language, :string, default: "und")
|
|
end
|
|
end
|
|
end
|