11 lines
245 B
Elixir
11 lines
245 B
Elixir
defmodule Outlook.Repo.Migrations.AddPublicContentToTranslations do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:translations) do
|
|
add :public_content, :text
|
|
end
|
|
rename table(:translations), :lang, to: :language
|
|
end
|
|
end
|