Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions infogami/infobase/_dbstore/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down
Loading