Skip to content

Instantly share code, notes, and snippets.

@wttj-tech
Created April 12, 2022 06:10
Show Gist options
  • Save wttj-tech/790def55adcde72b8448451dba03e187 to your computer and use it in GitHub Desktop.
Save wttj-tech/790def55adcde72b8448451dba03e187 to your computer and use it in GitHub Desktop.
defmodule WttjApi.Repo.Migrations.AddGenderToUsers do
use Ecto.Migration
def change do
alter table(:users) do
add_if_not_exists :gender, :string
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment