Skip to content

Commit 8eb5b13

Browse files
committed
change client_secret fromt string to text
closes #81
1 parent bacb6a5 commit 8eb5b13

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

generic-oidc-providers/database/migrations/001_create_generic_oidc_providers_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public function up(): void
1717
$table->string('display_color', 6)->nullable();
1818
$table->string('base_url');
1919
$table->string('client_id');
20-
$table->string('client_secret');
20+
$table->text('client_secret');
2121
$table->boolean('verify_jwt')->default(false);
2222
$table->text('jwt_public_key')->nullable();
2323
$table->timestamps();

0 commit comments

Comments
 (0)