11 lines
233 B
Elixir
11 lines
233 B
Elixir
|
|
defmodule Berrypod.Repo.Migrations.AddSeoFieldsToPages do
|
||
|
|
use Ecto.Migration
|
||
|
|
|
||
|
|
def change do
|
||
|
|
alter table(:pages) do
|
||
|
|
add :meta_robots, :string, default: "index, follow"
|
||
|
|
add :focus_keyword, :string
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|