Skip to content

Commit

Permalink
Fixed the SQL column type for termsOfServiceHash (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
thehenrytsai authored May 8, 2024
1 parent 8ddde7b commit 11464fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/registration/registration-store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export class RegistrationStore {
.createTable(RegistrationStore.registeredTenantTableName)
.ifNotExists()
.addColumn('did', 'text', (column) => column.primaryKey())
.addColumn('termsOfServiceHash', 'boolean')
.addColumn('termsOfServiceHash', 'text')
.execute();
}

Expand Down

0 comments on commit 11464fb

Please sign in to comment.