Skip to content

Commit

Permalink
fix: updated import.sql to reflect new changes to shared accounts & i…
Browse files Browse the repository at this point in the history
…nvoices
  • Loading branch information
antonstjernquist committed Aug 27, 2022
1 parent 0f3af76 commit fd01cbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions import.sql
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ CREATE TABLE `pefcl_invoices` (
`to` varchar(255) NOT NULL,
`fromIdentifier` varchar(255) NOT NULL,
`toIdentifier` varchar(255) NOT NULL,
`receiverAccountId` int DEFAULT NULL,
`receiverAccountIdentifier` varchar(255) DEFAULT NULL,
`amount` int DEFAULT '0',
`status` varchar(255) DEFAULT 'PENDING',
`expiresAt` datetime NOT NULL,
Expand All @@ -69,7 +69,7 @@ CREATE TABLE `pefcl_invoices` (

CREATE TABLE `pefcl_shared_accounts` (
`id` int NOT NULL AUTO_INCREMENT,
`user` varchar(255) DEFAULT NULL,
`userIdentifier` varchar(255) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`role` varchar(255) DEFAULT 'contributor',
`createdAt` datetime NOT NULL,
Expand Down

0 comments on commit fd01cbd

Please sign in to comment.