memEx/priv/repo/migrations/20220505233700_add_locale_s...

10 lines
163 B
Elixir

defmodule Memex.Repo.Migrations.AddLocaleSetting do
use Ecto.Migration
def change do
alter table("users") do
add :locale, :string
end
end
end