Skip to content

Commit

Permalink
Merge branch 'TBD54566975:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
ianpatton authored May 9, 2024
2 parents 17fcc94 + 11464fb commit b311ee1
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
22 changes: 11 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@web5/dwn-server",
"type": "module",
"version": "0.2.1",
"version": "0.2.2",
"files": [
"dist",
"src"
Expand All @@ -26,8 +26,8 @@
"url": "https://github.com/TBD54566975/dwn-server/issues"
},
"dependencies": {
"@tbd54566975/dwn-sdk-js": "0.3.1",
"@tbd54566975/dwn-sql-store": "0.4.1",
"@tbd54566975/dwn-sdk-js": "0.3.2",
"@tbd54566975/dwn-sql-store": "0.4.2",
"better-sqlite3": "^8.5.0",
"body-parser": "^1.20.2",
"bytes": "3.1.2",
Expand Down
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 b311ee1

Please sign in to comment.