10 lines
178 B
Elixir
10 lines
178 B
Elixir
defmodule Outlook.Repo.Migrations.AddRemarksToTranslations do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:translations) do
|
|
add :remarks, :text
|
|
end
|
|
end
|
|
end
|