add locale to user settings

This commit is contained in:
2022-05-05 20:55:59 -04:00
committed by oliviasculley
parent fd4fdcc36b
commit 302aa7eeda
20 changed files with 224 additions and 79 deletions

View File

@ -0,0 +1,9 @@
defmodule Lokal.Repo.Migrations.AddLocaleSetting do
use Ecto.Migration
def change do
alter table("users") do
add :locale, :string
end
end
end