From 3acc50844047a37698f0618fa235c138e386a053 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 23 Apr 2019 09:50:57 +0200 Subject: Upgrade sequelize --- server/models/oauth/oauth-client.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'server/models/oauth/oauth-client.ts') diff --git a/server/models/oauth/oauth-client.ts b/server/models/oauth/oauth-client.ts index b4a841edd..42c59bb79 100644 --- a/server/models/oauth/oauth-client.ts +++ b/server/models/oauth/oauth-client.ts @@ -24,10 +24,10 @@ export class OAuthClientModel extends Model { @Column clientSecret: string - @Column({ type: DataType.ARRAY(DataType.STRING) }) // FIXME: sequelize typings + @Column(DataType.ARRAY(DataType.STRING)) grants: string[] - @Column({ type: DataType.ARRAY(DataType.STRING) }) // FIXME: sequelize typings + @Column(DataType.ARRAY(DataType.STRING)) redirectUris: string[] @CreatedAt -- cgit v1.2.3