cannery/priv/repo/migrations/20220506015344_add_locale_setting.exs
shibao 8c95536ffd
All checks were successful
continuous-integration/drone/push Build is passing
add selectable ammo types
2023-03-23 22:07:25 -04:00

10 lines
164 B
Elixir

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