From 9d2ff7fc9f39401d219bac4037c3506fd838e877 Mon Sep 17 00:00:00 2001 From: jimchamp <28732543+jimchamp@users.noreply.github.com> Date: Wed, 8 Apr 2026 18:32:26 -0700 Subject: [PATCH] Update DDL for `transaction_details` table Updates datatype of primary key to `bigserial`. Changes the `property_action` field to `action`. --- infogami/infobase/_dbstore/schema.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infogami/infobase/_dbstore/schema.sql b/infogami/infobase/_dbstore/schema.sql index 985dd593..884a29ed 100644 --- a/infogami/infobase/_dbstore/schema.sql +++ b/infogami/infobase/_dbstore/schema.sql @@ -80,11 +80,11 @@ RETURNS text AS LANGUAGE SQL; create table transaction_details ( - id serial primary key, + id bigserial primary key, transaction_id integer references transaction(id), thing_id integer references thing(id), key_id integer references property(id), - property_action text, + action text, author_id integer references thing(id), is_bot boolean, created timestamp without time zone default (current_timestamp at time zone 'utc')