Skip to content

Commit

Permalink
fixing issues with network toggle
Browse files Browse the repository at this point in the history
  • Loading branch information
maycon-mello committed Aug 29, 2023
1 parent 4618a3a commit 7dc28b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/data-store/src/migrations/1691498362273-bootstrap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class Bootstrap1691498362273 implements MigrationInterface {
name: 'document_entity',
columns: [
new TableColumn({name: 'id', type: 'text', isPrimary: true}),
new TableColumn({name: 'networkId', type: 'text'}),
new TableColumn({name: 'networkId', type: 'text', isNullable: true}),
new TableColumn({name: 'type', type: 'text'}),
new TableColumn({name: 'correlation', type: 'text'}),
new TableColumn({name: 'data', type: 'blob'}),
Expand All @@ -56,7 +56,7 @@ export class Bootstrap1691498362273 implements MigrationInterface {
name: 'wallet_entity',
columns: [
new TableColumn({name: 'id', type: 'varchar', isPrimary: true}),
new TableColumn({name: 'version', type: 'varchar'}),
new TableColumn({name: 'version', type: 'varchar', isNullable: true}),
new TableColumn({name: 'networkId', type: 'varchar'}),
],
}),
Expand Down

0 comments on commit 7dc28b3

Please sign in to comment.