diff --git a/src/registration/registration-store.ts b/src/registration/registration-store.ts index ea3770a..f4d8159 100644 --- a/src/registration/registration-store.ts +++ b/src/registration/registration-store.ts @@ -30,7 +30,7 @@ export class RegistrationStore { .createTable(RegistrationStore.registeredTenantTableName) .ifNotExists() .addColumn('did', 'text', (column) => column.primaryKey()) - .addColumn('termsOfServiceHash', 'boolean') + .addColumn('termsOfServiceHash', 'text') .execute(); }