Last active
December 26, 2024 09:19
-
-
Save stevedomin/0ea9d9af96b565cbd0b7 to your computer and use it in GitHub Desktop.
Using UUIDs as primary key with Ecto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule MyBlog.Repo.Migrations.CreatePost do | |
use Ecto.Migration | |
def change do | |
create table(:posts, primary_key: false) do | |
add :id, :uuid, primary_key: true | |
add :body, :string | |
add :word_count, :integer | |
timestamps | |
end | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule MyBlog.Post do | |
use MyBlog.Web, :model | |
@primary_key {:id, :binary_id, autogenerate: true} | |
schema "posts" do | |
field :body, :string | |
field :word_count, :integer | |
timestamps | |
end | |
@required_fields ~w(body word_count) | |
@optional_fields ~w() | |
@doc """ | |
Creates a changeset based on the `model` and `params`. | |
If `params` are nil, an invalid changeset is returned | |
with no validation performed. | |
""" | |
def changeset(model, params \\ nil) do | |
model | |
|> cast(params, @required_fields, @optional_fields) | |
end | |
end |
@zjsherbondy you can set this:
@foreign_key_type :binary_id
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for pointing this out, it solved my problem :)