Skip to content

Pippin v2.1.0

Compare
Choose a tag to compare
@bbedward bbedward released this 24 Aug 16:21
· 67 commits to master since this release

BREAKING
Date times need to be updated do datetime aware objects in the database.

In postgres, you can run the following migration:

alter table blocks alter column created_at type timestamptz;
alter table accounts alter column created_at type timestamptz;
alter table adhoc_accounts alter column created_at type timestamptz;
alter table wallets alter column created_at type timestamptz;
  • Update Tortoise ORM
  • Improve connection handling