mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
9 lines
213 B
Elixir
9 lines
213 B
Elixir
defmodule Philomena.Repo.Migrations.DefaultCentered do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:users) do
|
|
modify :use_centered_layout, :boolean, from: :boolean, default: true
|
|
end
|
|
end
|
|
end
|