mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 12:37:58 +01:00
10 lines
213 B
Elixir
10 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
|