From 11464fb3a1b3f26c653a266c02066f784be3b419 Mon Sep 17 00:00:00 2001 From: Henry Tsai Date: Wed, 8 May 2024 12:55:27 -0700 Subject: [PATCH] Fixed the SQL column type for termsOfServiceHash (#131) --- src/registration/registration-store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }