エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Generate UUID fields in Phoenix with Postgresql - Dreamingechoes
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Generate UUID fields in Phoenix with Postgresql - Dreamingechoes
If for some reason you need to create a UUID field for your schema (a non-primary key field), and... If for some reason you need to create a UUID field for your schema (a non-primary key field), and you don't want to manage the creation of the value to store on the new database record, you can specify in the migration to use as default value the uuid_generate_v4() Postgresql method, so it will be auto-generated on the insert: defmodule App.Repo.Migrations.AddUuidFieldToUser do use Ecto.Migration

