Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save zachdaniel/568f921193cb70597726a794a485f07c to your computer and use it in GitHub Desktop.
Save zachdaniel/568f921193cb70597726a794a485f07c to your computer and use it in GitHub Desktop.
```elixir
def macro uuidv7_primary(name , opts \\ []) do
quote do
attribute unquote(name), :uuid, Keyword.merge(unquote(opts), [...your_defaults])
end
end
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment