お世話になっております。
Postgresqlに接続して使用させていただいています。
テーブル編集ではレコード追加出来るのですが、
テストデータなどをCSVでインポートしたく、必要箇所だけのCSVを用意して
インポートしましたが、
デフォルト式を設定したカラムに対してのnullが送られていてエラーになるのか、
エラーになってしまいます。
データセット側からデフォルト式対象の項目を省く操作などがございますでしょうか?
エラーメッセージ:
null value in column “id” of relation “department” violates not-null constraint
テーブル定義:
create table department (
id uuid default gen_random_uuid() not null
, name varchar(10) not null
, number varchar(3) not null
, deleted_at timestamp with time zone default NULL
, created_at timestamp with time zone default clock_timestamp() not null
, updated_at timestamp with time zone
, constraint department_PKC primary key (id)
) ;
アドバイスいただけると幸いです。