-
-
Save hryniuk/818e6e8ceea6b343e2fda534dd16364e 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment