Current section

Files

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

priv/templates/thesis.install/change_content_default_for_page_content.exs

defmodule <%= base %>.Repo.Migrations.ChangeContentDefaultForPageContent do
@moduledoc false
use Ecto.Migration
def up do
alter table(:thesis_page_contents) do
modify :content, :text, default: "", nil: false
end
end
def down do
alter table(:thesis_page_contents) do
modify :content, :text, default: "Edit this content area", nil: true
end
end
end