実装 今回の実装では、usersテーブルの_updated_atカラムをデータ更新の度にタイムスタンプの自動更新を行い、明示的に値が挿入された際にはその値に更新することを期待する。 -- usersテーブル定義 CREATE TABLE users ( user_id uuid NOT NULL DEFAULT gen_random_uuid(), login_id varchar(40) NOT NULL, login_password varchar(30) NOT NULL CHECK (length(login_password) > 8), _created_at timestamp with time zone NOT NULL DEFAULT current_timestamp, _updated_at timestamp with time zone NOT NULL DE
