Current section

Files

Jump to
thesis priv templates thesis.install add_meta_to_thesis_page_contents.exs
Raw

priv/templates/thesis.install/add_meta_to_thesis_page_contents.exs

defmodule <%= base %>.Repo.Migrations.AddMetaToThesisPageContents do
@moduledoc false
use Ecto.Migration
def change do
alter table(:thesis_page_contents) do
add :meta, :text
end
end
end